Skip to content

Commit

Permalink
refactor: fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Oct 13, 2023
1 parent 40952f1 commit 550f1c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/admin/core/src/forms/helpers/createDefaultOption.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {type Keyable} from '@myparcel-pdk/common/src';
import {type SelectOption} from '@myparcel-pdk/admin-common';
import {TriStateValue} from '@myparcel-pdk/admin';
import {TriState} from '../../data';

export const createDefaultOption = (value?: Keyable | undefined): SelectOption => ({
label: {
Expand All @@ -9,5 +9,5 @@ export const createDefaultOption = (value?: Keyable | undefined): SelectOption =
value: value ?? '?',
},
},
value: TriStateValue.Inherit,
value: TriState.Inherit,
});

0 comments on commit 550f1c1

Please sign in to comment.