Make noop updates hidable

This commit is contained in:
Andras Schmelczer 2025-01-02 10:58:22 +00:00
parent 55c07f3b82
commit 6d32e51c3e
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 14 additions and 9 deletions

View file

@ -5,6 +5,7 @@ export interface SyncSettings {
fetchChangesUpdateIntervalMs: number;
syncConcurrency: number;
isSyncEnabled: boolean;
displayNoopSyncEvents: boolean;
}
export const DEFAULT_SETTINGS: SyncSettings = {
@ -14,4 +15,5 @@ export const DEFAULT_SETTINGS: SyncSettings = {
fetchChangesUpdateIntervalMs: 1000,
syncConcurrency: 1,
isSyncEnabled: false,
displayNoopSyncEvents: false,
};