fix: some linter warnings and an error

This commit is contained in:
enes 2024-08-05 09:49:56 +02:00
parent 8d168314de
commit f51afe3b67
4 changed files with 6 additions and 6 deletions

View File

@ -145,7 +145,7 @@ export const MainLayout = () => {
})
.finally(() => setIsLoading(false))
}
}, [authState])
}, [authState, dispatch])
if (isLoading) return <LoadingSpinner desc={loadingSpinnerDesc} />

View File

@ -51,7 +51,7 @@ export const Nostr = () => {
/**
* Call login function when enter is pressed
*/
const handleInputKeyDown = (event: any) => {
const handleInputKeyDown = (event: React.KeyboardEvent<HTMLDivElement>) => {
if (event.code === 'Enter' || event.code === 'NumpadEnter') {
event.preventDefault()
login()

View File

@ -12,7 +12,7 @@ import {
useTheme
} from '@mui/material'
import { UnsignedEvent, nip19, kinds, VerifiedEvent, Event } from 'nostr-tools'
import { useEffect, useMemo, useRef, useState } from 'react'
import React, { useEffect, useMemo, useRef, useState } from 'react'
import { Link, useParams } from 'react-router-dom'
import { toast } from 'react-toastify'
import { MetadataController, NostrController } from '../../../controllers'
@ -321,8 +321,8 @@ export const ProfileSettingsPage = () => {
}}
>
<img
onError={(event: any) => {
event.target.src = getRoboHashPicture(npub!)
onError={(event: React.SyntheticEvent<HTMLImageElement>) => {
event.currentTarget.src = getRoboHashPicture(npub!)
}}
className={styles.img}
src={getProfileImage(profileMetadata)}

View File

@ -120,7 +120,7 @@ export const queryNip05 = async (
if (!match) throw new Error('Invalid nip05')
// Destructure the match result, assigning default value '_' to name if not provided
const [_, name = '_', domain] = match
const [, name = '_', domain] = match
// Construct the URL to query the NIP-05 data
const url = `https://${domain}/.well-known/nostr.json?name=${name}`