From 97d48b48c17f1c6b246db0c0694ee2a03c5d3631 Mon Sep 17 00:00:00 2001 From: jmfrancois Date: Wed, 18 Oct 2023 18:19:36 +0200 Subject: [PATCH] chore: cleanup --- .../Dropdown/Primitive/DropdownShell.module.scss | 7 ------- .../src/components/Form/Field/Input/Input.ToggleSwitch.tsx | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/packages/design-system/src/components/Dropdown/Primitive/DropdownShell.module.scss b/packages/design-system/src/components/Dropdown/Primitive/DropdownShell.module.scss index 7af15ddaa9..ce144eb6d4 100644 --- a/packages/design-system/src/components/Dropdown/Primitive/DropdownShell.module.scss +++ b/packages/design-system/src/components/Dropdown/Primitive/DropdownShell.module.scss @@ -17,11 +17,4 @@ max-width: tokens.$coral-sizing-maximal; transition: tokens.$coral-transition-fast; } - - // &[data-enter] { - // .animatedZone { - // opacity: 1; - // transform: translateY(0%); - // } - // } } diff --git a/packages/design-system/src/components/Form/Field/Input/Input.ToggleSwitch.tsx b/packages/design-system/src/components/Form/Field/Input/Input.ToggleSwitch.tsx index 7820e44ac1..c6ee13c2bc 100644 --- a/packages/design-system/src/components/Form/Field/Input/Input.ToggleSwitch.tsx +++ b/packages/design-system/src/components/Form/Field/Input/Input.ToggleSwitch.tsx @@ -7,7 +7,7 @@ import { useId } from '../../../../useId'; import { CheckboxPrimitiveType } from '../../Primitives'; import { useControl } from '../../../../useControl'; -import styles from './ToggleSwitchPrimitive.module.scss'; +import styles from './Input.ToggleSwitch.module.scss'; export type ToggleSwitchPropTypes = Omit & { onChange?: (checked: boolean) => void;