Skip to content

Commit 6be28f7

Browse files
committed
fix(credits): increase timeout
1 parent d797879 commit 6be28f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/credits.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { GetStaticProps, NextPage, InferGetStaticPropsType } from 'next';
66

77
export const getStaticProps = (async () => {
88
const res = await fetch('https://translate-credits.stats.fm', {
9-
signal: AbortSignal.timeout(5_000),
9+
signal: AbortSignal.timeout(60_000),
1010
});
1111
const translatorCredits = (await res.json()) as {
1212
id: number;

0 commit comments

Comments
 (0)