Skip to content

Commit

Permalink
fix(credits): increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
saa committed Sep 27, 2024
1 parent d797879 commit 6be28f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/credits.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { GetStaticProps, NextPage, InferGetStaticPropsType } from 'next';

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

0 comments on commit 6be28f7

Please sign in to comment.