Skip to content

Commit 50a2058

Browse files
committed
Fix key
1 parent 3fce214 commit 50a2058

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/allo-app/components/registration/applications-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function ApplicationsList({ query }: { query: IndexerQuery }) {
1414
error={error}
1515
isPending={isPending}
1616
renderItem={(application) => (
17-
<ApproveItem key={application.address} {...application} />
17+
<ApproveItem {...application} key={application.address} />
1818
)}
1919
/>
2020
);

packages/allo-app/components/registration/projects-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export function ProjectsList({ query }: { query: IndexerQuery }) {
1818
isPending={isPending}
1919
renderItem={(project) => (
2020
<RegistrationCard
21-
key={project.id}
2221
{...project}
22+
key={project.id}
2323
inCart={cart.contains(project.address)}
2424
onSelect={() =>
2525
cart.set(

0 commit comments

Comments
 (0)