From 15c93909450efe563892a1a1b55559ffb66de02d Mon Sep 17 00:00:00 2001 From: Zhiyuan Liang Date: Fri, 7 Nov 2025 15:19:20 +0800 Subject: [PATCH] fix format --- src/appConfigurationImpl.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/appConfigurationImpl.ts b/src/appConfigurationImpl.ts index 1077567..e46bd11 100644 --- a/src/appConfigurationImpl.ts +++ b/src/appConfigurationImpl.ts @@ -626,8 +626,8 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration { } else { for (const watchedSetting of this.#sentinels.keys()) { const configurationSettingId: ConfigurationSettingId = { key: watchedSetting.key, label: watchedSetting.label, etag: this.#sentinels.get(watchedSetting)?.etag }; - const response: GetConfigurationSettingResponse | undefined - = await this.#getConfigurationSetting(configurationSettingId, { onlyIfChanged: true }); + const response: GetConfigurationSettingResponse | undefined = + await this.#getConfigurationSetting(configurationSettingId, { onlyIfChanged: true }); const watcher: SettingWatcher = this.#sentinels.get(watchedSetting)!; // watcher should always exist for sentinels const isDeleted = response === undefined && watcher.etag !== undefined; // previously existed, now deleted