We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 180c40c commit 113086aCopy full SHA for 113086a
packages-exp/app-check-exp/src/api.ts
@@ -87,7 +87,7 @@ function _activate(
87
const state = getState(app);
88
89
const newState: AppCheckState = { ...state, activated: true };
90
- newState.provider = provider; // Read cached token from storage if it exists and store it in memory.
+ newState.provider = provider; // Read cached token from storage if it exists and store it in memory.
91
newState.cachedTokenPromise = readTokenFromStorage(app).then(cachedToken => {
92
if (cachedToken && isValid(cachedToken)) {
93
setState(app, { ...getState(app), token: cachedToken });
0 commit comments