Skip to content

Commit

Permalink
Removed unused type
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexShukel committed Sep 12, 2023
1 parent e0e5bf9 commit 04922e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/x/src/useIntegerField.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export type IntegerFieldConfig = FieldConfig<number | null | undefined> & {
formatValue?: (value: number | null | undefined) => string;
};

export type IntegerFieldBag = ConverterFieldBag<number | null | undefined> & {};
export type IntegerFieldBag = ConverterFieldBag<number | null | undefined>;

export const useIntegerField = ({
name,
Expand Down

0 comments on commit 04922e1

Please sign in to comment.