Skip to content

Commit 0ffb8ae

Browse files
committed
fix(polling): increase default polling
1 parent 0b5f1a0 commit 0ffb8ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/stores/data/activity.store.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type ActivityStoreState = {
2929
const ActivityStoreConstants = {
3030
Store: 'data.activity',
3131
/** 30 seconds */
32-
DefaultPolling: PollingIntervals.ThirtySeconds,
32+
DefaultPolling: PollingIntervals.OneMinute,
3333
} as const;
3434

3535
export const useActivityStore = defineStore(ActivityStoreConstants.Store, () => {

src/stores/data/watching.store.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { useI18n } from '~/utils/i18n.utils';
1616
const WatchingStoreConstants = {
1717
Store: 'data.watching',
1818
/** 10 seconds */
19-
DefaultPolling: PollingIntervals.TenSeconds,
19+
DefaultPolling: PollingIntervals.ThirtySeconds,
2020
} as const;
2121

2222
type WatchingState = {

0 commit comments

Comments
 (0)