From 4fe1d1384d10a314df3195705948ec19f219b0fc Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 25 Jul 2024 15:18:45 +0300 Subject: [PATCH] Add pinned post id --- src/components/posts/pinned-post.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/posts/pinned-post.ts b/src/components/posts/pinned-post.ts index d13e0fc1f..5088a233c 100644 --- a/src/components/posts/pinned-post.ts +++ b/src/components/posts/pinned-post.ts @@ -1,7 +1,7 @@ import { getLastestPostIdsInSpace } from 'src/graphql/apis' import { GqlClient } from 'src/graphql/ApolloProvider' -const PINNED_POST_IDS: string[] = [] +const PINNED_POST_IDS: string[] = ['192597'] export const PINNED_POST_ID = PINNED_POST_IDS[Math.floor(Math.random() * PINNED_POST_IDS.length)] const COMMUNITY_SPACE_ID = '1244'