diff --git a/frontend/src/stores/app.ts b/frontend/src/stores/app.ts index 406ccdb7..e6cd9eff 100644 --- a/frontend/src/stores/app.ts +++ b/frontend/src/stores/app.ts @@ -354,6 +354,7 @@ export const useAppStore = defineStore('app', () => { balance_low_notify_threshold: 0, channel_monitor_enabled: true, channel_monitor_default_interval_seconds: 60, + available_channels_enabled: false, } } diff --git a/frontend/src/types/index.ts b/frontend/src/types/index.ts index 6f0d9181..8bf52e9d 100644 --- a/frontend/src/types/index.ts +++ b/frontend/src/types/index.ts @@ -187,6 +187,7 @@ export interface PublicSettings { balance_low_notify_threshold: number channel_monitor_enabled: boolean channel_monitor_default_interval_seconds: number + available_channels_enabled: boolean } export interface AuthResponse {