-
Notifications
You must be signed in to change notification settings - Fork 1
Contains minor improvements and code clean-up across several files. #560
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -57,7 +57,7 @@ try { | |||||
| }; | ||||||
|
|
||||||
| // Verify all required functions are available | ||||||
| const requiredFunctions: Array<keyof WalletService> = ['generateMnemonic', 'validateMnemonic', 'createWallet', 'importWallet']; | ||||||
| const requiredFunctions: (keyof WalletService)[] = ['generateMnemonic', 'validateMnemonic', 'createWallet', 'importWallet']; | ||||||
|
||||||
| const requiredFunctions: (keyof WalletService)[] = ['generateMnemonic', 'validateMnemonic', 'createWallet', 'importWallet']; | |
| const requiredFunctions: Array<keyof WalletService> = ['generateMnemonic', 'validateMnemonic', 'createWallet', 'importWallet']; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ESLint directive is missing an explanatory comment. According to the codebase convention (see app/(tabs)/send.tsx:253-254 and app/passkeys-security.tsx:38-39), when adding eslint-disable-next-line react-hooks/exhaustive-deps, you should include a comment explaining why dependencies are intentionally omitted. For example, you could add a comment like "// walletService is intentionally omitted as it's stable" on the dependency array line.