diff options
| author | 2020-10-05 17:58:42 +0100 | |
|---|---|---|
| committer | 2020-10-05 17:58:42 +0100 | |
| commit | 740bb5fbb426e29242960e99a2565829dda94bf3 (patch) | |
| tree | 17aabfa64aa298bba6a0182802fa9f7f80761056 /src/pages | |
| parent | Add a key to the dynamic router (diff) | |
Add a key to the form listings
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/LandingPage.tsx | 2 | 
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> | 
