We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b5f1a0 commit 0ffb8aeCopy full SHA for 0ffb8ae
src/stores/data/activity.store.ts
@@ -29,7 +29,7 @@ type ActivityStoreState = {
29
const ActivityStoreConstants = {
30
Store: 'data.activity',
31
/** 30 seconds */
32
- DefaultPolling: PollingIntervals.ThirtySeconds,
+ DefaultPolling: PollingIntervals.OneMinute,
33
} as const;
34
35
export const useActivityStore = defineStore(ActivityStoreConstants.Store, () => {
src/stores/data/watching.store.ts
@@ -16,7 +16,7 @@ import { useI18n } from '~/utils/i18n.utils';
16
const WatchingStoreConstants = {
17
Store: 'data.watching',
18
/** 10 seconds */
19
- DefaultPolling: PollingIntervals.TenSeconds,
+ DefaultPolling: PollingIntervals.ThirtySeconds,
20
21
22
type WatchingState = {
0 commit comments