diff --git a/src/components/admin/common.tsx b/src/components/admin/common.tsx index ce1ae95..0f8abd3 100644 --- a/src/components/admin/common.tsx +++ b/src/components/admin/common.tsx @@ -42,13 +42,16 @@ const AdminActionButton = ({ label, onClick, symbol, + type = "button", }: { label: string; - onClick: () => void; + onClick?: () => void; symbol: JSX.Element | undefined; + type?: HTMLButtonElement["type"]; }) => { return (