Skip to content

Commit

Permalink
chore: fix default checked
Browse files Browse the repository at this point in the history
  • Loading branch information
markphelps committed Jul 5, 2023
1 parent 98c9b79 commit 357d011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/flags/FlagForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function FlagForm(props: FlagFormProps) {
key: flag?.key || '',
name: flag?.name || '',
description: flag?.description || '',
type: flag?.type || (FlagType.VARIANT_FLAG_TYPE as FlagType),
type: flag?.type || ('VARIANT_FLAG_TYPE' as FlagType),
enabled: flag?.enabled || false
};

Expand Down

0 comments on commit 357d011

Please sign in to comment.