diff --git a/site/src/components/Form/Form.tsx b/site/src/components/Form/Form.tsx index ebfab3b4a6..8422a0f6cb 100644 --- a/site/src/components/Form/Form.tsx +++ b/site/src/components/Form/Form.tsx @@ -1,4 +1,3 @@ -import { useTheme } from "@emotion/react"; import { type ComponentProps, createContext, @@ -20,22 +19,16 @@ type FormProps = HTMLProps & { direction?: FormContextValue["direction"]; }; -export const Form: FC = ({ direction, ...formProps }) => { - const theme = useTheme(); - +export const Form: FC = ({ direction, className, ...formProps }) => { return (
);