diff --git a/app/(sub-page)/result/components/result-category-detail-dialog.tsx b/app/(sub-page)/result/components/result-category-detail-dialog.tsx
index 4311bc7f..01375d3a 100644
--- a/app/(sub-page)/result/components/result-category-detail-dialog.tsx
+++ b/app/(sub-page)/result/components/result-category-detail-dialog.tsx
@@ -30,7 +30,7 @@ export default function ResultCategoryDetailDialog({ children, querystring }: Re
return (
<>
-
+
{children}
diff --git a/app/ui/view/molecule/drawer/drawer.tsx b/app/ui/view/molecule/drawer/drawer.tsx
index a43f203e..1ccf63f2 100644
--- a/app/ui/view/molecule/drawer/drawer.tsx
+++ b/app/ui/view/molecule/drawer/drawer.tsx
@@ -9,9 +9,10 @@ import useDialog from '@/app/hooks/useDialog';
interface DrawerProps extends React.PropsWithChildren {
drawerKey: DialogKey;
closeDialog?: () => void;
+ className?: string;
}
-const Drawer = ({ children, drawerKey, closeDialog }: DrawerProps) => {
+const Drawer = ({ children, drawerKey, closeDialog, className }: DrawerProps) => {
const { isOpen, close } = useDialog(drawerKey, closeDialog);
return (
@@ -20,7 +21,8 @@ const Drawer = ({ children, drawerKey, closeDialog }: DrawerProps) => {
{children}