update endpoints

This commit is contained in:
smanylov
2025-12-17 14:30:54 +07:00
parent 58192b2959
commit 61cd288359
5 changed files with 42 additions and 15 deletions
+1 -1
View File
@@ -217,7 +217,7 @@ export default function RegisterForm() {
</p>
)}
{state?.error?.server && (
<p className="text-sm text-red-500">
<p className="text-sm text-red-500 mt-4">
{t(state?.error?.server)}
</p>
)}
-2
View File
@@ -7,8 +7,6 @@ import { useTranslations } from 'next-intl';
export default function DropDownList() {
const pathname = usePathname().replace('/en/', '/').replace('/ru/', '/');
console.log('pathname');
console.log(pathname);
const [dropDownExpanded, setDropDownExpanded] = useState(false);
const t = useTranslations('Global');