Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Latest commit

 

History

History
19 lines (14 loc) · 404 Bytes

File metadata and controls

19 lines (14 loc) · 404 Bytes

How to reproduce:

  • run npm install
  • run npx expo export -p web

In the terminal, you'll see the console.log result, it will print 3 times the same log:

{ params: { '0': { id: 'one' }, '1': { id: 'two' } } }
{ params: { '0': { id: 'one' }, '1': { id: 'two' } } }
{ params: { '0': { id: 'one' }, '1': { id: 'two' } } }

I would expect, instead:

{ id: 'one' }
{ id: 'two' }