chore: update to react query v5

This commit is contained in:
Stavros
2025-04-15 12:27:28 +03:00
parent b24aab17b1
commit 7413b3f931
11 changed files with 23 additions and 29 deletions

View File

@@ -113,7 +113,7 @@ export const LoginPage = () => {
</Text>
<OAuthButtons
oauthProviders={oauthProviders}
isLoading={loginOAuthMutation.isLoading}
isPending={loginOAuthMutation.isPending}
mutate={loginOAuthMutation.mutate}
genericName={genericName}
/>
@@ -128,7 +128,7 @@ export const LoginPage = () => {
)}
{configuredProviders.includes("username") && (
<LoginForm
isLoading={loginMutation.isLoading}
isPending={loginMutation.isPending}
onSubmit={handleSubmit}
/>
)}