Skip to content

Commit

Permalink
fix(InputNumber): remove unused type
Browse files Browse the repository at this point in the history
  • Loading branch information
ashmortar committed Oct 21, 2024
1 parent a458c7a commit 8509d48
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/antd/InputNumber.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ReactElement, useCallback } from "react"
import { useCallback } from "react"
import { ControlProps, RendererProps } from "@jsonforms/core"
import { InputNumber as AntdInputNumber } from "antd"
import { NumericControlOptions } from "../ui-schema"
Expand All @@ -9,7 +9,6 @@ import {
percentageStringToDecimal,
} from "../controls/utils"

type InputNumber = ReactElement<typeof AntdInputNumber>
type AntdInputNumberProps = React.ComponentProps<typeof AntdInputNumber>
type InputNumberProps = AntdInputNumberProps & RendererProps & ControlProps

Expand Down

0 comments on commit 8509d48

Please sign in to comment.