From d281c553ed73c429a62617c615e69c5d21d5617b Mon Sep 17 00:00:00 2001 From: ahmadgaz Date: Sun, 29 Sep 2024 19:25:18 -0700 Subject: [PATCH] fixed issues --- components/molecules/client/profile-btn/component.tsx | 5 +++-- components/organisms/schedule/component.tsx | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/components/molecules/client/profile-btn/component.tsx b/components/molecules/client/profile-btn/component.tsx index 0ad5261..e812ac8 100644 --- a/components/molecules/client/profile-btn/component.tsx +++ b/components/molecules/client/profile-btn/component.tsx @@ -3,7 +3,7 @@ import { LinkBtn } from '@/components/atoms'; import { cn } from '@/utils/cn'; import { useSession } from '@/wrappers/session-provider'; -import { UserIcon } from '@heroicons/react/20/solid'; +import { UserCircleIcon } from '@heroicons/react/24/solid'; interface Props extends Omit< @@ -20,8 +20,9 @@ export const ProfileBtn: React.FC = ({ className, ...props }) => { {...props} href="/profile" variant="tertiary" + aria-label="Profile" > - Profile + {' '} ); } diff --git a/components/organisms/schedule/component.tsx b/components/organisms/schedule/component.tsx index 451e61f..9c87ee7 100644 --- a/components/organisms/schedule/component.tsx +++ b/components/organisms/schedule/component.tsx @@ -27,7 +27,7 @@ export const Schedule: React.FC = (props) => (