Skip to content

Commit

Permalink
fix: Remove unneeded || false
Browse files Browse the repository at this point in the history
  • Loading branch information
ptbrowne committed Feb 28, 2023
1 parent f3093d4 commit 1b20ce0
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions app/configurator/components/field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -745,11 +745,7 @@ export const ChartFieldField = ({
key={`select-${field}-dimension`}
id={field}
label={
<FieldLabel
isOptional={optional || false}
isFetching={fetching}
label={label}
/>
<FieldLabel isOptional={optional} isFetching={fetching} label={label} />
}
disabled={disabled || fetching}
options={
Expand Down

0 comments on commit 1b20ce0

Please sign in to comment.