Skip to content

Commit

Permalink
Fix the name in the checkboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianBouron committed Jul 8, 2024
1 parent 83128cf commit a4a7087
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const ImportSeed: FC<ImportSeedProps> = ({ activeStep, password, handleBa
<Checkbox
checked={isSecp256k1}
onChange={() => setSecp256k1(!isSecp256k1)}
name="rememberSession"
name="setSecp256k1"
color="primary"
style={{ transform: 'scale(0.9)' }}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const SecretSeed: FC<SecretSeedProps> = ({ activeStep, steps, onBack, onN
<Checkbox
checked={isSecp256k1}
onChange={() => setSecp256k1(!isSecp256k1)}
name="rememberSession"
name="setSecp256k1"
color="primary"
style={{ transform: 'scale(0.9)' }}
/>
Expand Down

0 comments on commit a4a7087

Please sign in to comment.