diff --git a/apps/client/package.json b/apps/client/package.json index ff1e0f26f..d38f63310 100644 --- a/apps/client/package.json +++ b/apps/client/package.json @@ -4,7 +4,7 @@ "private": true, "type": "module", "dependencies": { - "@base-ui-components/react": "1.0.0-beta.0", + "@base-ui-components/react": "1.0.0-beta.1", "@chakra-ui/react": "^2.7.0", "@dnd-kit/core": "^6.3.1", "@dnd-kit/sortable": "^10.0.0", diff --git a/apps/client/src/common/components/select/Select.tsx b/apps/client/src/common/components/select/Select.tsx index bac43b28b..a553e46a9 100644 --- a/apps/client/src/common/components/select/Select.tsx +++ b/apps/client/src/common/components/select/Select.tsx @@ -11,7 +11,6 @@ interface SelectProps { label: string; disabled?: boolean; // exposed to allow creating a non-selectable option }[]; - placeholder?: string; value?: T; onChange?: (value: NonNullable) => void; } @@ -19,14 +18,13 @@ interface SelectProps { export default function Select({ defaultValue, options, - placeholder, value, onChange, }: SelectProps) { return ( - + - + diff --git a/apps/client/src/features/control/message/TimerViewControl.tsx b/apps/client/src/features/control/message/TimerViewControl.tsx index 0682d0620..38aa848ad 100644 --- a/apps/client/src/features/control/message/TimerViewControl.tsx +++ b/apps/client/src/features/control/message/TimerViewControl.tsx @@ -73,7 +73,6 @@ function SecondarySourceControl() { <> setCycleValue(value)} options={eventTriggerOptions.map((cycle) => ({ value: cycle, label: cycle }))} />