Skip to content

Commit 811b0e4

Browse files
fix lint
1 parent c096a50 commit 811b0e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/AzureAppConfigurationImpl.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -702,13 +702,13 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
702702
let getOptions: GetConfigurationSettingOptions = {};
703703
if (this.#isCdnUsed) {
704704
// If CDN is used, add etag to request header so that the pipeline policy can retrieve and append it to the request URL
705-
getOptions = {
705+
getOptions = {
706706
requestOptions: { customHeaders: { [ETAG_LOOKUP_HEADER]: this.#kvSelectorCollection.cdnCacheBreakString ?? "" } },
707707
};
708708
} else {
709709
// if CDN is not used, send conditional request
710-
getOptions = {
711-
onlyIfChanged: true
710+
getOptions = {
711+
onlyIfChanged: true
712712
};
713713
}
714714
const response = await this.#getConfigurationSetting(sentinel, getOptions);

0 commit comments

Comments
 (0)