We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f5ba00 commit 6122571Copy full SHA for 6122571
frontend/src/APIClients/authAPIClient.ts
@@ -274,7 +274,9 @@ export const register = async ({
274
}
275
};
276
277
-export const resetPassword = async (email: string): Promise<{ success: boolean; error?: string }> => {
+export const resetPassword = async (
278
+ email: string,
279
+): Promise<{ success: boolean; error?: string }> => {
280
try {
281
if (!validateEmail(email)) {
282
return { success: false, error: 'Please enter a valid email address' };
0 commit comments