diff --git a/apps/frontend/src/ui/Switch/Switch.tsx b/apps/frontend/src/ui/Switch/Switch.tsx
index d05b7533..b6c2b102 100644
--- a/apps/frontend/src/ui/Switch/Switch.tsx
+++ b/apps/frontend/src/ui/Switch/Switch.tsx
@@ -8,10 +8,11 @@ type Props = {
onChange?: (e: { target: { value: boolean } }) => void;
defaultValue?: boolean;
disabled?: boolean;
+ dataTestid?: string;
};
export const Switch = forwardRef
(
- ({ label, value, name, defaultValue, onChange, disabled }, ref) => {
+ ({ label, value, name, defaultValue, dataTestid, onChange, disabled }, ref) => {
return (