diff options
author | dan <dan.abramov@gmail.com> | 2024-02-28 00:19:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-28 00:19:13 +0000 |
commit | 6bd68e5321f25565eb89dfcae71e1932501c28f3 (patch) | |
tree | fd5169fdc0d69a505128031499ce111a984c5205 /src | |
parent | d451f82f54974b7b3da1477a7e1f221628860f62 (diff) | |
download | voidsky-6bd68e5321f25565eb89dfcae71e1932501c28f3.tar.zst |
Fix keys within a slice (#3005)
Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/state/queries/post-feed.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts index 220aac374..c295ffcb0 100644 --- a/src/state/queries/post-feed.ts +++ b/src/state/queries/post-feed.ts @@ -276,7 +276,7 @@ export function usePostFeedQuery( .success ) { return { - _reactKey: `${slice._reactKey}-${i}`, + _reactKey: `${slice._reactKey}-${i}-${item.post.uri}`, uri: item.post.uri, post: item.post, record: item.post.record, |