Skip to content

Commit

Permalink
works
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKurt committed Apr 26, 2024
1 parent 9c0e522 commit bd4c541
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/grant-explorer/src/checkoutStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ export const useCheckoutStore = create<CheckoutState>()(
amount: string;
recipient: string;
projectRegistryId: string;
applicationIndex: string;
applicationIndex: number;
anchorAddress: string;
}[] = [];

Expand All @@ -274,7 +274,7 @@ export const useCheckoutStore = create<CheckoutState>()(
amount: d.amount,
recipient: d.recipient,
projectRegistryId: d.projectRegistryId,
applicationIndex: app.id,
applicationIndex: Number(app.id),
anchorAddress: app.anchorAddress,
});
});
Expand Down

0 comments on commit bd4c541

Please sign in to comment.