Skip to content

Commit

Permalink
(#6254) Fix input-text controller
Browse files Browse the repository at this point in the history
  • Loading branch information
anicyne committed Apr 19, 2024
1 parent 0f23708 commit 0f9c5f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/src/components/input-radio/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ export const fillKeyOptionMap = <T>(keyOptionMap: Map<string, Option<T>>, option
});
};

type RequiredProps = NonNullable<unknown>;
type RequiredProps = PropLabelWithExpertSlot;
type OptionalProps = {
required: boolean;
} & PropLabelWithExpertSlot;
};
type InputCheckboxRadioProps = Generic.Element.Members<RequiredProps, OptionalProps>;
type InputCheckboxRadioWatches = Generic.Element.Watchers<RequiredProps, OptionalProps>;

Expand Down

0 comments on commit 0f9c5f1

Please sign in to comment.