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 fd76f08 commit b663dceCopy full SHA for b663dce
example/src/hooks/useIterableApp.tsx
@@ -198,7 +198,6 @@ export const IterableAppProvider: FunctionComponent<
198
process.env.ITBL_IS_JWT_ENABLED === 'true' &&
199
process.env.ITBL_JWT_SECRET
200
) {
201
- console.log('CONFIGURED AUTH HANDLER');
202
config.authHandler = async () => {
203
const token = await getJwtToken();
204
// return 'SomethingNotValid'; // Uncomment this to test the failure callback
@@ -220,8 +219,6 @@ export const IterableAppProvider: FunctionComponent<
220
219
.then((isSuccessful) => {
221
setIsInitialized(isSuccessful);
222
223
- console.log('🚀 > IterableAppProvider > isSuccessful:', isSuccessful);
224
-
225
if (!isSuccessful) {
226
return Promise.reject('`Iterable.initialize` failed');
227
}
0 commit comments