Skip to content

Commit bb99031

Browse files
author
kjelko
committed
format
1 parent 6756dfa commit bb99031

File tree

1 file changed

+2
-2
lines changed
  • packages/remote-config/src

1 file changed

+2
-2
lines changed

packages/remote-config/src/api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ export function getValue(remoteConfig: RemoteConfig, key: string): Value {
256256
if (!rc._isInitializationComplete) {
257257
rc._logger.debug(
258258
`A value was requested for key "${key}" before SDK initialization completed.` +
259-
' Await on ensureInitialized if the intent was to get a previously activated value.'
259+
' Await on ensureInitialized if the intent was to get a previously activated value.'
260260
);
261261
}
262262
const activeConfig = rc._storageCache.getActiveConfig();
@@ -267,7 +267,7 @@ export function getValue(remoteConfig: RemoteConfig, key: string): Value {
267267
}
268268
rc._logger.debug(
269269
`Returning static value for key "${key}".` +
270-
' Define a default or remote value if this is unintentional.'
270+
' Define a default or remote value if this is unintentional.'
271271
);
272272
return new ValueImpl('static');
273273
}

0 commit comments

Comments
 (0)