aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/components/FeedList.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-11-08 17:48:54 +0900
committernsfisis <nsfisis@gmail.com>2025-11-08 17:48:54 +0900
commit79c3528bbcd82c6eed67b17747ded31af09a4a64 (patch)
tree0b544d66cfb70cdce15b005b6dffbe4aeb218248 /frontend/src/components/FeedList.tsx
parent6dbc5bbcacf99e4941ee8e1fb67bd132d0f517ed (diff)
downloadfeedaka-79c3528bbcd82c6eed67b17747ded31af09a4a64.tar.gz
feedaka-79c3528bbcd82c6eed67b17747ded31af09a4a64.tar.zst
feedaka-79c3528bbcd82c6eed67b17747ded31af09a4a64.zip
fix(frontend): Fix incorrect caching settingsv0.4.1
Diffstat (limited to 'frontend/src/components/FeedList.tsx')
-rw-r--r--frontend/src/components/FeedList.tsx3
1 files changed, 3 insertions, 0 deletions
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) {