pos-dashboard-v2/src/components/LangRedirect.tsx
2025-08-05 12:35:40 +07:00

18 lines
320 B
TypeScript

'use client'
// Next Imports
import { redirect, usePathname } from 'next/navigation'
// Config Imports
import { i18n } from '@configs/i18n'
const LangRedirect = () => {
const pathname = usePathname()
const redirectUrl = `/${i18n.defaultLocale}${pathname}`
redirect(redirectUrl)
}
export default LangRedirect