Skip to content

Commit

Permalink
refactor: firebase realtime datastore (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
pataruco authored Nov 29, 2024
1 parent 823f306 commit 51dcc1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/fewd/components/recap/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ const Recap = () => {
</form>

<ol>
{things.map((thing, index) => (
<ThingItem thing={thing} key={Object.keys(thing).join() + index} />
{things.map((thing) => (
<ThingItem thing={thing} key={crypto.randomUUID()} />
))}
</ol>
</>
Expand Down

0 comments on commit 51dcc1f

Please sign in to comment.