style: lint
This commit is contained in:
parent
213ae79bf5
commit
35bd6d3688
@ -107,7 +107,7 @@ export const Login = () => {
|
||||
|
||||
try {
|
||||
privateKey = nip19.decode(nsec).data as Uint8Array
|
||||
} catch(err) {
|
||||
} catch (err) {
|
||||
toast.error(`Error decoding the nsec. ${err}`)
|
||||
}
|
||||
}
|
||||
@ -330,12 +330,13 @@ export const Login = () => {
|
||||
const publickey = getPublicKey(privateKey)
|
||||
|
||||
if (publickey) return loginWithNsec(privateKey)
|
||||
|
||||
} catch(err) {
|
||||
} catch (err) {
|
||||
console.warn('err', err)
|
||||
}
|
||||
|
||||
toast.error('Invalid format, please use: private key (hex), nsec..., bunker:// or nip05 format.')
|
||||
toast.error(
|
||||
'Invalid format, please use: private key (hex), nsec..., bunker:// or nip05 format.'
|
||||
)
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -208,7 +208,7 @@ export const ProfilePage = () => {
|
||||
</Box>
|
||||
</Box>
|
||||
<Box className={styles.head}>
|
||||
<Box sx={{lineHeight: 1}} className={styles.npubNip}>
|
||||
<Box sx={{ lineHeight: 1 }} className={styles.npubNip}>
|
||||
<Box
|
||||
sx={{
|
||||
display: 'flex'
|
||||
@ -216,7 +216,7 @@ export const ProfilePage = () => {
|
||||
>
|
||||
{profileMetadata && (
|
||||
<Typography
|
||||
sx={{ margin: '5px 0 5px 0'}}
|
||||
sx={{ margin: '5px 0 5px 0' }}
|
||||
variant="h6"
|
||||
className={styles.bold}
|
||||
>
|
||||
@ -240,11 +240,19 @@ export const ProfilePage = () => {
|
||||
</Box>
|
||||
<Box>
|
||||
{profileMetadata?.nip05 &&
|
||||
textElementWithCopyIcon(profileMetadata.nip05, undefined, 15)}
|
||||
textElementWithCopyIcon(
|
||||
profileMetadata.nip05,
|
||||
undefined,
|
||||
15
|
||||
)}
|
||||
</Box>
|
||||
<Box>
|
||||
{profileMetadata?.lud16 &&
|
||||
textElementWithCopyIcon(profileMetadata.lud16, undefined, 15)}
|
||||
textElementWithCopyIcon(
|
||||
profileMetadata.lud16,
|
||||
undefined,
|
||||
15
|
||||
)}
|
||||
</Box>
|
||||
</Box>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user