Skip to content

Commit

Permalink
Fix typo (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
carina-akaia authored Jul 2, 2024
1 parent feba97a commit c875245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/donation/components/buttons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import { useDonation } from "../hooks/feature";
export const DonationRandomButton = () => {
const {
isLoading: isRandomPGRegistryEntryLoading,
data: isRandomPGRegistryEntry,
data: randomPGRegistryEntry,
mutate: refetchRandomPGRegistryEntry,
} = potlock.useRandomListRegistration({
listId: POTLOCK_REGISTRY_LIST_ID,
status: "Approved",
});

const randomProjectAccountId = isRandomPGRegistryEntry?.registrant.id;
const randomProjectAccountId = randomPGRegistryEntry?.registrant.id;

const { openDonationModal: openRandomDonationModal } = useDonation({
accountId: randomProjectAccountId ?? "unknown",
Expand Down

0 comments on commit c875245

Please sign in to comment.