Skip to content

Commit 4abea1c

Browse files
increase to 7 days (#18855)
1 parent 40c39f5 commit 4abea1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/dashboard/src/data/git-providers/suggested-repositories-query.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ export const useSuggestedRepositories = () => {
2121
return await getGitpodService().server.getSuggestedRepositories(org.id);
2222
},
2323
{
24-
// Keeps data in cache for 24h - will still refresh though
25-
cacheTime: 1000 * 60 * 60 * 24,
24+
// Keeps data in cache for 7 days - will still refresh though
25+
cacheTime: 1000 * 60 * 60 * 24 * 7,
2626
},
2727
);
2828
};

0 commit comments

Comments
 (0)