From cd5d38b4310c6ff7e5c2d3540cccec2ffab4ae7f Mon Sep 17 00:00:00 2001 From: Roland <33993199+rolznz@users.noreply.github.com> Date: Fri, 29 Nov 2024 16:00:37 -0600 Subject: [PATCH] fix: bad merge in useNotifyReceivedPayments (#836) --- frontend/src/hooks/useNotifyReceivedPayments.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/hooks/useNotifyReceivedPayments.ts b/frontend/src/hooks/useNotifyReceivedPayments.ts index e6ef852b..8a891b25 100644 --- a/frontend/src/hooks/useNotifyReceivedPayments.ts +++ b/frontend/src/hooks/useNotifyReceivedPayments.ts @@ -4,7 +4,7 @@ import { useTransactions } from "src/hooks/useTransactions"; import { Transaction } from "src/types"; export function useNotifyReceivedPayments() { - const { data: transactions } = useTransactions(true, 1); + const { data: transactions } = useTransactions(undefined, true, 1); const [prevTransaction, setPrevTransaction] = React.useState(); const { toast } = useToast();