NORY-47: revalidate user path after identity modification
This commit is contained in:
parent
e1ee4bda43
commit
86784d3b92
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue