Skip to content

Commit ebbff45

Browse files
committed
fixed linter
1 parent c88972b commit ebbff45

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

frontend/src/APIClients/authAPIClient.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ export interface AuthResult {
3535
validationErrors?: string[];
3636
}
3737

38-
export const login = async (email: string, password: string, isAdminPortal: boolean = false): Promise<AuthResult> => {
38+
export const login = async (
39+
email: string,
40+
password: string,
41+
isAdminPortal: boolean = false,
42+
): Promise<AuthResult> => {
3943
try {
4044
// Validate inputs
4145
if (!validateEmail(email)) {

0 commit comments

Comments
 (0)