We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52e957b commit 01d3999Copy full SHA for 01d3999
1 file changed
components/ArticlePreview/ArticlePreview.tsx
@@ -60,7 +60,7 @@ const ArticlePreview: NextPage<Props> = ({
60
const howManySavedToShow = 3;
61
const { data: bookmarksData, refetch } = api.post.myBookmarks.useQuery(
62
{ limit: howManySavedToShow },
63
- { enabled: !!session }
+ { enabled: !!session },
64
);
65
const bookmarks = bookmarksData?.bookmarks;
66
const dateTime = Temporal.Instant.from(new Date(date).toISOString());
0 commit comments