Skip to content

Commit 9bf9eb0

Browse files
committed
fix(cache): Fix invalid cache persistence
1 parent bd43170 commit 9bf9eb0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/www/src/app/api/v2/GraphQLInterop.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ const GithubGraphQL = {
202202
...(process.env.BEARER ? { Authorization: process.env.BEARER } : {}),
203203
},
204204
body: JSON.stringify({ query: queryWithRateLimit }),
205-
next: { revalidate: 1800 },
205+
cache: 'no-store',
206206
});
207207

208208
const json = await response.json();

0 commit comments

Comments
 (0)