Skip to content

Commit

Permalink
fix(context): improve missing auth context log message
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Feb 6, 2024
1 parent 93a1096 commit 59082a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ export const popLocalStorageItem = (key: string) => {
export const nop = () => {};

export const logMissingAuthContext = (...keys: string[]): void => {
console.error(`Missing Bento auth context: ${keys.join(", ")}`);
console.error(`Missing Bento auth context: ${keys.join(" or ")}`);
};

0 comments on commit 59082a2

Please sign in to comment.