From 79c3528bbcd82c6eed67b17747ded31af09a4a64 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 8 Nov 2025 17:48:54 +0900 Subject: fix(frontend): Fix incorrect caching settings --- frontend/src/components/FeedList.tsx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'frontend/src/components/FeedList.tsx') diff --git a/frontend/src/components/FeedList.tsx b/frontend/src/components/FeedList.tsx index d1d7bf3..6081293 100644 --- a/frontend/src/components/FeedList.tsx +++ b/frontend/src/components/FeedList.tsx @@ -6,9 +6,12 @@ interface Props { onFeedUnsubscribed?: () => void; } +const urqlContextFeed = { additionalTypenames: ["Feed"] }; + export function FeedList({ onFeedUnsubscribed }: Props) { const [{ data, fetching, error }] = useQuery({ query: GetFeedsDocument, + context: urqlContextFeed, }); if (fetching) { -- cgit v1.2.3-70-g09d2