aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-10-05 17:58:42 +0100
committerGravatar Joe Banks <[email protected]>2020-10-05 17:58:42 +0100
commit740bb5fbb426e29242960e99a2565829dda94bf3 (patch)
tree17aabfa64aa298bba6a0182802fa9f7f80761056 /src
parentAdd a key to the dynamic router (diff)
Add a key to the form listings
Diffstat (limited to 'src')
-rw-r--r--src/pages/LandingPage.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/LandingPage.tsx b/src/pages/LandingPage.tsx
index ef588f3..60deb30 100644
--- a/src/pages/LandingPage.tsx
+++ b/src/pages/LandingPage.tsx
@@ -20,7 +20,7 @@ function LandingPage() {
{getForms().map(form => (
- <FormListing form={form}/>
+ <FormListing key={form.id} form={form}/>
))}
</div>
</div>