Skip to content

Commit

Permalink
fix: linters
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-defi committed Dec 12, 2024
1 parent 959f7ff commit 6b3fb4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/internal/utils/getAddressTokenBalances.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,5 @@ export default async function getAddressTokenBalances(
},
];


return tokenBalances.sort((a, b) => b.valueInFiat - a.valueInFiat);
}
2 changes: 1 addition & 1 deletion src/wallet/components/island/WalletIslandProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import {
} from 'react';
import { useAddressTokenHoldings } from '../../../core-react/internal/hooks/useAddressTokenHoldings';
import { useValue } from '../../../core-react/internal/hooks/useValue';
import type { TokenBalanceWithFiatValue } from './WalletIslandTokenHoldings';
import { useWalletContext } from '../WalletProvider';
import type { TokenBalanceWithFiatValue } from './WalletIslandTokenHoldings';

export type WalletIslandContextType = {
showSwap: boolean;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { addSvgForeground } from '../../../internal/svg/addForegroundSvg';
import { arrowUpRightSvg } from '../../../internal/svg/arrowUpRightSvg';
import { toggleSvg } from '../../../internal/svg/toggleSvg';
import { cn, border, color, pressable, text } from '../../../styles/theme';
import { border, cn, color, pressable, text } from '../../../styles/theme';
import { useWalletIslandContext } from './WalletIslandProvider';

type TransactionActionProps = {
Expand All @@ -12,7 +12,7 @@ type TransactionActionProps = {

export function WalletIslandTransactionActions() {
const { setShowSwap, animationClasses } = useWalletIslandContext();

return (
<div
className={cn(
Expand Down

0 comments on commit 6b3fb4b

Please sign in to comment.