Skip to content

Commit b663dce

Browse files
committed
refactor: remove console log statements to streamline IterableAppProvider
1 parent fd76f08 commit b663dce

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

example/src/hooks/useIterableApp.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ export const IterableAppProvider: FunctionComponent<
198198
process.env.ITBL_IS_JWT_ENABLED === 'true' &&
199199
process.env.ITBL_JWT_SECRET
200200
) {
201-
console.log('CONFIGURED AUTH HANDLER');
202201
config.authHandler = async () => {
203202
const token = await getJwtToken();
204203
// return 'SomethingNotValid'; // Uncomment this to test the failure callback
@@ -220,8 +219,6 @@ export const IterableAppProvider: FunctionComponent<
220219
.then((isSuccessful) => {
221220
setIsInitialized(isSuccessful);
222221

223-
console.log('🚀 > IterableAppProvider > isSuccessful:', isSuccessful);
224-
225222
if (!isSuccessful) {
226223
return Promise.reject('`Iterable.initialize` failed');
227224
}

0 commit comments

Comments
 (0)