diff --git a/src/components/ui/CustomToast.tsx b/src/components/ui/CustomToast.tsx index 86d3068..3f29d84 100644 --- a/src/components/ui/CustomToast.tsx +++ b/src/components/ui/CustomToast.tsx @@ -32,7 +32,7 @@ const CustomToast: FC<{ children: ReactNode }> = ({ children }) => { const alertType = toastToClassName(t.type); return (
{resolveValue(t.message, t)}
{t.type !== 'loading' && ( diff --git a/src/pages/users/[id].tsx b/src/pages/users/[id].tsx index 60f188a..02d713b 100644 --- a/src/pages/users/[id].tsx +++ b/src/pages/users/[id].tsx @@ -36,7 +36,7 @@ const UserInfoPage: FC