Skip to content

Commit

Permalink
fix tsx error by allowing default to be undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
acwhite211 committed Apr 19, 2024
1 parent 740258a commit e979d0e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export function LegacyPermissions({
>
{userType.label}
<Combobox
defaultValue={userResource.get('userType')}
defaultValue={userResource.get('userType') || undefined}
field={userType}
id={undefined}
isDisabled={false}
Expand Down

0 comments on commit e979d0e

Please sign in to comment.