Skip to content

Commit f96db25

Browse files
committed
increase to 7 days
1 parent 20ff1be commit f96db25

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)