Skip to content

Commit 35c86f1

Browse files
authored
chore: lint (#5312)
1 parent 36a617a commit 35c86f1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

apps/laboratory/src/components/SmartAccount/SmartAccountVersionInput.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { useEffect, useState } from 'react'
22

33
import { Flex, FormControl, FormLabel, HStack, Radio, RadioGroup, Switch } from '@chakra-ui/react'
44

5-
const SmartAccountVersionInput = () => {
5+
function SmartAccountVersionInput() {
66
const [smartAccountVersion, setSmartAccountVersion] = useState<'v6' | 'v7'>('v7')
77
const [isForced, setIsForced] = useState(false)
88
useEffect(() => {
@@ -13,7 +13,7 @@ const SmartAccountVersionInput = () => {
1313
setIsForced(true)
1414
}
1515
} catch {
16-
// no-op
16+
// No-op
1717
}
1818
}, [])
1919

@@ -25,9 +25,10 @@ const SmartAccountVersionInput = () => {
2525
localStorage.removeItem('@appkit-wallet/dapp_smart_account_version')
2626
}
2727
} catch {
28-
// no-op
28+
// No-op
2929
}
3030
}, [isForced, smartAccountVersion])
31+
3132
return (
3233
<Flex gridGap="4" flexDirection="column">
3334
<FormControl>

0 commit comments

Comments
 (0)