Fix components based on failed tests
CI Pipeline / test (pull_request) Has been cancelled
CI Pipeline / e2e (chromium) (pull_request) Has been cancelled
CI Pipeline / e2e (firefox) (pull_request) Has been cancelled
CI Pipeline / e2e (webkit) (pull_request) Has been cancelled
CI Pipeline / visual-regression (pull_request) Has been cancelled
CI Pipeline / performance (pull_request) Has been cancelled
CI Pipeline / lint (pull_request) Has been cancelled
CI Pipeline / build (pull_request) Has been cancelled

This commit is contained in:
adilallo
2026-01-29 19:38:03 -07:00
parent f7e0b5f517
commit ba3a15a7d2
14 changed files with 32 additions and 91 deletions
@@ -97,7 +97,6 @@ const CheckboxContainer = memo<CheckboxProps>(
return (
<CheckboxView
checkboxId={checkboxId}
labelId={labelId}
checked={checked}
mode={mode}
@@ -106,7 +105,6 @@ const CheckboxContainer = memo<CheckboxProps>(
label={label}
name={name}
value={value}
ariaLabel={ariaLabel}
className={className}
combinedBoxStyles={combinedBoxStyles}
defaultOutlineClass={defaultOutlineClass}
@@ -17,7 +17,6 @@ export interface CheckboxProps {
}
export interface CheckboxViewProps {
checkboxId: string;
labelId: string;
checked: boolean;
mode: "standard" | "inverse";
@@ -26,7 +25,6 @@ export interface CheckboxViewProps {
label?: string;
name?: string;
value?: string;
ariaLabel?: string;
className: string;
combinedBoxStyles: string;
defaultOutlineClass: string;
@@ -1,14 +1,12 @@
import type { CheckboxViewProps } from "./Checkbox.types";
export function CheckboxView({
checkboxId,
labelId,
checked,
disabled,
label,
name,
value,
ariaLabel,
className,
combinedBoxStyles,
defaultOutlineClass,