Skip to content

Commit 6c65bf8

Browse files
FEATURE (databases): Increase Ui reload interval
1 parent f3c5543 commit 6c65bf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/features/databases/ui/DatabasesComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const DatabasesComponent = ({ contentHeight }: Props) => {
3939

4040
const interval = setInterval(() => {
4141
loadDatabases(true);
42-
}, 60_000);
42+
}, 5 * 60_000);
4343

4444
return () => clearInterval(interval);
4545
}, []);

0 commit comments

Comments
 (0)