Skip to content

Commit

Permalink
ci: remove earlier fix to check if test fails in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
porcellus committed Oct 6, 2023
1 parent 771f6cf commit f4aeedd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions lib/build/utils.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions lib/ts/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import { User } from "./user";
import { SessionContainer } from "./recipe/session";

export const doFetch: typeof fetch = (...args) => {
if (typeof fetch !== "undefined") {
return fetch(...args);
}
// if (typeof fetch !== "undefined") {
// return fetch(...args);
// }
return crossFetch(...args);
};

Expand Down

0 comments on commit f4aeedd

Please sign in to comment.