Fix various typos

This commit is contained in:
Ray 2023-12-29 09:08:51 +00:00 committed by GitHub
parent eb04c8298a
commit eacb126c45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -168,12 +168,12 @@ const db = getFirestore(getApp());
<p>Check here for existing entries:</p> <p>Check here for existing entries:</p>
<p>Code added, work in progress to add said incidents to Firestore.</p> <p>Code added, work in progress to add said incidents to Firestore.</p>
<h2>Incidents in the Database:</h2> <h2>Incidents in the Database:</h2>
{incidents.map((incident) => ( {incidents.map((incidents) => (
<div key={incident.id}> <div key={incidents.id}>
<p>Submitter: {incident.submitter}</p> <p>Submitter: {incidents.submitter}</p>
<p>Date: {incident.date}</p> <p>Date: {incidents.date}</p>
<p>Context: {incident.context}</p> <p>Context: {incidents.context}</p>
<p>Selected Options: {incident.selectedOptions.join(", ")}</p> <p>Selected Options: {incidents.selectedOptions.join(", ")}</p>
</div> </div>
))} ))}
</Form.Group> </Form.Group>