File size: 213 Bytes
c30ea2a
 
 
 
 
 
 
1
2
3
4
5
6
7
8
"use server";
import { setUserLocale } from "@/i18n/db";
import { revalidatePath } from "next/cache";
export default async function updateLocale(locale: string) {
  setUserLocale(locale);
  revalidatePath("/");
}