2024-12-25 15:09:35 +03:00

12 lines
202 B
TypeScript

'use server';
import { revalidatePath } from 'next/cache';
export async function becomeMaster() {
revalidatePath('/profile');
}
export async function updateName() {
revalidatePath('/profile');
}