* wip * fix type check * refactor "/settings/my-account/profile" * refactor "settings/my-account/general" * refactor "/settings/my-accouunt/calendars" * refactor "/settings/my-account/appearance" * fix: type-check --------- Co-authored-by: Amit Sharma <74371312+Amit91848@users.noreply.github.com> Co-authored-by: Amit Sharma <samit91848@gmail.com>
12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
"use server";
|
|
|
|
import { revalidatePath } from "next/cache";
|
|
|
|
export async function revalidateSettingsProfile() {
|
|
revalidatePath("/settings/my-account/profile");
|
|
}
|
|
|
|
export async function revalidateSettingsCalendars() {
|
|
revalidatePath("/settings/my-account/calendars");
|
|
}
|