Skip to content

Commit

Permalink
change broker id to demo
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarnadas committed Nov 18, 2024
1 parent 3e16d7a commit 2bba396
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ VITE_NAME="Orderly DEX"
VITE_DESCRIPTION="Example DEX implementation using Orderly's React Hooks SDK"
VITE_WALLETCONNECT_DAPP_URL=https://orderlynetwork.github.io/example-dex
VITE_WALLETCONNECT_PROJECT_ID=5f4e967f02cf92c8db957c56e877e149
VITE_BROKER_ID=orderly
VITE_BROKER_ID=demo
VITE_BROKER_NAME="Orderly Network"
2 changes: 1 addition & 1 deletion app/components/Assets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const Assets: FC = () => {
});
const balance = useMemo(
() => (status >= AccountStatusEnum.Connected ? deposit.balance : undefined),
[status, deposit]
[status, deposit, account.chainId]
);
const { withdraw, availableWithdraw } = useWithdraw();

Expand Down

0 comments on commit 2bba396

Please sign in to comment.