Skip to content

Commit 6122571

Browse files
committed
prettier
1 parent 6f5ba00 commit 6122571

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

frontend/src/APIClients/authAPIClient.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,9 @@ export const register = async ({
274274
}
275275
};
276276

277-
export const resetPassword = async (email: string): Promise<{ success: boolean; error?: string }> => {
277+
export const resetPassword = async (
278+
email: string,
279+
): Promise<{ success: boolean; error?: string }> => {
278280
try {
279281
if (!validateEmail(email)) {
280282
return { success: false, error: 'Please enter a valid email address' };

0 commit comments

Comments
 (0)