Merge branch 'feature/plz-work' of github.com:anultravioletaurora/Jellify into feature/plz-work

This commit is contained in:
Violet Caulfield
2024-10-15 07:24:31 -05:00
+1 -1
View File
@@ -12,7 +12,7 @@ export const useCredentials = useQuery({
return await fetchCredentials(serverUrl);
} catch(error: any) {
console.error("Exception occurred using credentials", error);
throw new Error(`Unable to use server credentials: ${error}`)
Promise.reject(`Unable to use server credentials: ${error}`);
}
}
});