Skip to content

Commit

Permalink
fix eslint hook deps
Browse files Browse the repository at this point in the history
  • Loading branch information
codingki committed Dec 23, 2024
1 parent 31aa6c5 commit f6e08e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/widget/src/components/RenderWalletList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export const RenderWalletList = ({

const height = useMemo(() => {
return Math.min(530, displayWallets.length * (ITEM_HEIGHT + ITEM_GAP));
}, [walletList, displayWallets.length]);
}, [displayWallets.length]);


const renderWalletListOrWalletConnectionStatus = useMemo(() => {
Expand Down Expand Up @@ -230,6 +230,7 @@ export const RenderWalletList = ({
renderItem,
theme.primary.text.lowContrast,
theme.primary.text.normal,
displayWallets,
]);

return (
Expand Down

0 comments on commit f6e08e7

Please sign in to comment.