Skip to content

Commit f6e1f45

Browse files
committed
Fix errors
1 parent ee7a0b7 commit f6e1f45

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/allo-app/components/allocation/allocation-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export function AllocationForm({
6262
}}
6363
renderItem={(project, i) => (
6464
<AllocationItem
65-
key={project?.address}
65+
key={project?.id}
6666
{...project}
6767
value={cart.items[project?.address as Address]}
6868
onUpdate={(value) => cart.set(project?.address, value)}

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

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

0 commit comments

Comments
 (0)