janahan-law/utils/commonFunction.utils.js
2025-08-18 12:25:06 +05:30

7 lines
130 B
JavaScript

export const changeLanguage = (router, locale) => {
const path = router.asPath;
router.push(path, path, { locale });
};