Update local testing script and resolve errors

This commit is contained in:
adilallo
2026-01-29 20:57:39 -07:00
parent ca42982dea
commit adac7d0545
46 changed files with 209 additions and 136 deletions
@@ -30,6 +30,6 @@ export interface RadioButtonViewProps {
backgroundWhenChecked: string;
dotColor: string;
labelColor: string;
onToggle: (e: React.MouseEvent | React.KeyboardEvent) => void;
onKeyDown: (e: React.KeyboardEvent<HTMLSpanElement>) => void;
onToggle: (_e: React.MouseEvent | React.KeyboardEvent) => void;
onKeyDown: (_e: React.KeyboardEvent<HTMLSpanElement>) => void;
}