Skip to content

Commit

Permalink
fix: bad merge in useNotifyReceivedPayments (#836)
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz authored Nov 29, 2024
1 parent b9426a8 commit cd5d38b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/hooks/useNotifyReceivedPayments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<Transaction>();
const { toast } = useToast();

Expand Down

0 comments on commit cd5d38b

Please sign in to comment.