Skip to content

Commit

Permalink
remove unused directives
Browse files Browse the repository at this point in the history
  • Loading branch information
gregfromstl committed Dec 18, 2024
1 parent 45af357 commit f7cb93b
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,12 @@ export const AbiSelector: React.FC<AbiSelectorProps> = ({
options={options}
defaultValue={options.find((o) => o.value === defaultValue)}
chakraStyles={{
// @ts-expect-error - this works fine
container: (provided) => ({
...provided,
width: "full",
}),
}}
value={options.find((o) => o.value === value)}
// @ts-expect-error - this works fine
onChange={(selectedFn) => {
if (selectedFn) {
onChange((selectedFn as { label: string; value: string }).value);
Expand Down

0 comments on commit f7cb93b

Please sign in to comment.