From 456ffb36f02c6213f96a9ec029d3fe7ecf78e598 Mon Sep 17 00:00:00 2001 From: teodorus-nathaniel Date: Mon, 15 Jul 2024 21:25:47 +0700 Subject: [PATCH] Remove pinned post --- 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 01b954dfa..d13e0fc1f 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[] = ['179638'] +const PINNED_POST_IDS: string[] = [] export const PINNED_POST_ID = PINNED_POST_IDS[Math.floor(Math.random() * PINNED_POST_IDS.length)] const COMMUNITY_SPACE_ID = '1244'