Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
carlbrugger committed May 31, 2024
1 parent e14cff6 commit cb15797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wrapper/FlatfileClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const environmentSupplier = () => {
const tokenSupplier = () => {
const token = CrossEnvConfig.get("FLATFILE_BEARER_TOKEN");
if (token == undefined) {
throw new Error("FLATFILE_BEARER_TOKEN is not undefined");
throw new Error("FLATFILE_BEARER_TOKEN is undefined");
}
return token;
};

0 comments on commit cb15797

Please sign in to comment.