aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/LandingPage.tsx
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-10-06 00:29:04 +0100
committerGravatar GitHub <[email protected]>2020-10-06 00:29:04 +0100
commit63517197fa6fb252207531e7e158ee9acfe3fd0e (patch)
tree17aabfa64aa298bba6a0182802fa9f7f80761056 /src/pages/LandingPage.tsx
parentMerge pull request #17 from python-discord/branding/update-favicons (diff)
parentAdd a key to the form listings (diff)
Merge pull request #18 from python-discord/react/add-list-key
Add keys to sections of the app where arrays are iterated
Diffstat (limited to 'src/pages/LandingPage.tsx')
-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>