Skip to content

Commit eadb138

Browse files
authored
Prettier fix (#207)
* temp * weird prettier fix * remove testing --------- Co-authored-by: mitch prewitt <[email protected]>
1 parent d2b3975 commit eadb138

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dist
22
/index.js
33
/index.d.ts
4-
/index.node.js
4+
/index.node.js

src/authorization/utils.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,10 @@ export const cancelAxiosRequestAndMakeFetch = (
9595
};
9696
};
9797

98-
9998
export const validateTokenTime = (expTime: number): boolean => {
10099
const isValid = expTime < ONE_MINUTE;
101100
return isValid;
102101
};
103102
export const isEmail = (email: string): boolean => {
104103
return EMAIL_REGEX.test(email);
105-
106104
};

0 commit comments

Comments
 (0)