Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexHladin committed Jan 6, 2025
1 parent 3534e5a commit 541473e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,9 @@ const EventTypeAppSettingsInterface: EventTypeAppSettingsComponent = ({
options={options}
isSearchable={false}
isDisabled={disabled}
onChange={(option) => setAppData("refundCountCalendarDays", option?.value === 1)}
onChange={(option: (typeof options)[0]) =>
setAppData("refundCountCalendarDays", option?.value === 1)
}
value={getSelectedOption()}
defaultValue={getSelectedOption()}
/>
Expand Down

0 comments on commit 541473e

Please sign in to comment.