diff --git a/front/src/modules/ui/input/components/Checkbox.tsx b/front/src/modules/ui/input/components/Checkbox.tsx index 1de02defa..661651c7f 100644 --- a/front/src/modules/ui/input/components/Checkbox.tsx +++ b/front/src/modules/ui/input/components/Checkbox.tsx @@ -1,5 +1,6 @@ import * as React from 'react'; import styled from '@emotion/styled'; +import { v4 } from 'uuid'; import { IconCheck, IconMinus } from '@/ui/display/icon'; @@ -130,11 +131,14 @@ export const Checkbox = ({ setIsInternalChecked(event.target.checked); }; + const checkboxId = 'checkbox' + v4(); + return ( -