We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee7a0b7 commit f6e1f45Copy full SHA for f6e1f45
2 files changed
packages/allo-app/components/allocation/allocation-form.tsx
@@ -62,7 +62,7 @@ export function AllocationForm({
62
}}
63
renderItem={(project, i) => (
64
<AllocationItem
65
- key={project?.address}
+ key={project?.id}
66
{...project}
67
value={cart.items[project?.address as Address]}
68
onUpdate={(value) => cart.set(project?.address, value)}
packages/allo-app/components/registration/projects-list.tsx
@@ -18,7 +18,7 @@ export function ProjectsList({ query }: { query: IndexerQuery }) {
18
isPending={isPending}
19
renderItem={(project) => (
20
<RegistrationCard
21
- key={project.address}
+ key={project.id}
22
23
inCart={cart.contains(project.address)}
24
onSelect={() =>
0 commit comments