Open paddomanno opened 1 year ago
https://github.com/t3dotgg/chirp/blob/main/src/pages/index.tsx#L90
The list of posts is shown 4 times 👀
This is because of mapping over [...data, ...data, ...data, ...data] that's why posts are shown 4 times. This can be resolved by simply mapping over data.
[...data, ...data, ...data, ...data]
data
https://github.com/t3dotgg/chirp/blob/main/src/pages/index.tsx#L90
The list of posts is shown 4 times 👀