From eacb126c4567b2fcfb9fae7df15ed17414392289 Mon Sep 17 00:00:00 2001 From: Rei Date: Fri, 29 Dec 2023 09:08:51 +0000 Subject: [PATCH] Fix various typos --- src/App.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/App.js b/src/App.js index 45b2ebe..034ef30 100644 --- a/src/App.js +++ b/src/App.js @@ -168,12 +168,12 @@ const db = getFirestore(getApp());

Check here for existing entries:

Code added, work in progress to add said incidents to Firestore.

Incidents in the Database:

- {incidents.map((incident) => ( -
-

Submitter: {incident.submitter}

-

Date: {incident.date}

-

Context: {incident.context}

-

Selected Options: {incident.selectedOptions.join(", ")}

+ {incidents.map((incidents) => ( +
+

Submitter: {incidents.submitter}

+

Date: {incidents.date}

+

Context: {incidents.context}

+

Selected Options: {incidents.selectedOptions.join(", ")}

))}