From afa24facfc2774bb767a563b3f0957a9103dd11e Mon Sep 17 00:00:00 2001 From: Sebastian-Webster <84299475+Sebastian-Webster@users.noreply.github.com> Date: Fri, 12 Jan 2024 17:51:25 +0400 Subject: [PATCH] Fixed vote choice not showing in category view page --- screens/CategoryViewPage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/screens/CategoryViewPage.js b/screens/CategoryViewPage.js index 3b318b0..4087a43 100644 --- a/screens/CategoryViewPage.js +++ b/screens/CategoryViewPage.js @@ -294,8 +294,8 @@ const CategoryViewPage = ({route, navigation}) => { threadNSFW: threadData[index].threadNSFW, threadNSFL: threadData[index].threadNSFL, datePosted: threadData[index].datePosted, - threadUpVoted: threadData[index].threadUpVoted, - threadDownVoted: threadData[index].threadDownVoted, + upvoted: threadData[index].upvoted, + downvoted: threadData[index].downvoted, creatorDisplayName: threadData[index].creatorDisplayName, creatorName: threadData[index].creatorName, creatorImageB64: pfpB64,