Use node id instead of slug when updating loading articles

This commit is contained in:
Jackson Harper
2024-01-22 13:56:56 +08:00
parent 6dd4f49c2f
commit 4f30ff9811

View File

@ -224,7 +224,7 @@ export function HomeFeedContainer(): JSX.Element {
if (itemsToUpdate.length > 0) {
const link = await articleQuery({
username,
slug: item.node.slug,
slug: item.node.id,
includeFriendsHighlights: false,
})