NORY-47: revalidate user path after identity modification

This commit is contained in:
Markus Thielker 2025-01-03 22:07:11 +01:00
parent e1ee4bda43
commit 86784d3b92
No known key found for this signature in database

View file

@ -19,6 +19,8 @@ export async function updateIdentity({ id, body }: UpdatedIdentityProps) {
console.log('Updated identity', data);
revalidatePath('/user');
return data;
}
@ -34,6 +36,8 @@ export async function deleteIdentityCredential({ id, type }: DeleteIdentityCrede
console.log('Credential removed', data);
revalidatePath('/user');
return data;
}
@ -44,6 +48,8 @@ export async function deleteIdentitySessions(id: string) {
console.log('Deleted identity\'s sessions', data);
revalidatePath('/user');
return data;
}