Skip to content

Commit

Permalink
fix: the private key input (#10865)
Browse files Browse the repository at this point in the history
* fix: typo

* fix: input padding style
  • Loading branch information
guanbinrui committed Sep 26, 2023
1 parent d42215a commit d8f5d1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { usePersonaRecovery } from '../../contexts/index.js'

const useStyles = makeStyles()((theme) => ({
input: {
paddingTop: 12,
backgroundColor: theme.palette.maskColor.input,
color: theme.palette.maskColor.main,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ const Recovery = memo(function Recovery() {
<MaskTabList variant="base" onChange={onTabChange} aria-label="Recovery Methods">
<Tab className={classes.tab} label="Mnemonic" value={tabs.mnemonic} />
<Tab className={classes.tab} label="Private Key" value={tabs.privateKey} />
<Tab className={classes.tab} label="KeyStore" value={tabs.local} />
<Tab className={classes.tab} label="Keystore" value={tabs.local} />
</MaskTabList>
</div>
<div className={classes.panelContainer}>
Expand Down

0 comments on commit d8f5d1a

Please sign in to comment.