diff options
| author | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-04-02 08:36:51 +0300 |
|---|---|---|
| committer | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-04-02 08:36:51 +0300 |
| commit | 1d20080db8a26e4b7dd4071daac1166142592afa (patch) | |
| tree | b4c1bbb3725f00515b4d9a3d1cd18584cba36c81 /src/components/header/AuthDialog.tsx | |
| parent | 37f51ee88710868a77b4645294cf32862f55e7c4 (diff) | |
minor improvements
Diffstat (limited to 'src/components/header/AuthDialog.tsx')
| -rw-r--r-- | src/components/header/AuthDialog.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/header/AuthDialog.tsx b/src/components/header/AuthDialog.tsx index 0b4bc74..8c00b81 100644 --- a/src/components/header/AuthDialog.tsx +++ b/src/components/header/AuthDialog.tsx @@ -1,5 +1,5 @@ import { Button } from '@/components/ui/button'; -import { DialogContent } from '@/components/ui/dialog'; +import { DialogContent, DialogTitle } from '@/components/ui/dialog'; import { Input } from '@/components/ui/input'; import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs'; import GoogleIcon from '../../../public/icons/google.svg'; @@ -7,10 +7,14 @@ import { InputField } from '../ui/inputfield'; import LoginForm from './authdialog/LoginForm'; import RegisterForm from './authdialog/RegisterForm'; import ResetForm from './authdialog/ResetForm'; +import { VisuallyHidden } from '@radix-ui/react-visually-hidden'; export function AuthDialog() { return ( <div className="absolute"> <DialogContent className="w-[350px] p-0 bg-transparent border-transparent"> + <VisuallyHidden> + <DialogTitle>Authentication</DialogTitle> + </VisuallyHidden> <Tabs defaultValue="Login"> <div className="flex flex-col gap-[5px] "> <TabsList className="w-[350px] h-[36px] justify-between bg-background border border-violet rounded-[15px]"> |
