diff --git a/apps/nextjs/src/app/_components/wallet/WalletSheet.tsx b/apps/nextjs/src/app/_components/wallet/WalletSheet.tsx index bb6fc94c..05324103 100644 --- a/apps/nextjs/src/app/_components/wallet/WalletSheet.tsx +++ b/apps/nextjs/src/app/_components/wallet/WalletSheet.tsx @@ -33,6 +33,7 @@ import { QueryTransactionList, LocalStorageTransactionList } from "./transaction export const WalletSheet = () => { const transactionState = useStore(useTransactionManager, (state) => state); const newTransactionCount = transactionState?.newTransactionCount; + const combinedtransactions = transactionState?.combinedTransactions; const { isConnected: isL2Connected, @@ -145,7 +146,7 @@ export const WalletSheet = () => { - {newTransactionCount && newTransactionCount > 0 ? : } + {(newTransactionCount && newTransactionCount > 0) || !combinedtransactions ? : }