Skip to content

Commit 53d7010

Browse files
committed
fix(flows): replace console.log with console.error for better error logging
1 parent b615865 commit 53d7010

File tree

1 file changed

+1
-1
lines changed
  • packages/modules/widget/src/state

1 file changed

+1
-1
lines changed

packages/modules/widget/src/state/flows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const handleFetchManifest =
3232
),
3333
).pipe(
3434
catchError((err) => {
35-
console.log(err, action.payload);
35+
console.error(err, action.payload);
3636
return of(actions.fetchManifest.failure(err));
3737
}),
3838
);

0 commit comments

Comments
 (0)