Skip to content

Commit

Permalink
fix(react-formio): add missing React import in defaultOperationButton
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Mar 3, 2025
1 parent 211131a commit 11acfa3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Choices from "@formio/choices.js";
import classnames from "classnames";
import React, { HTMLAttributes, ReactElement, useEffect, useRef } from "react";
import React, { type HTMLAttributes, type ReactElement, useEffect, useRef } from "react";

import { getEventValue } from "../../utils/getEventValue";
import { FormControl, FormControlProps } from "../form-control/formControl.component";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import classnames from "classnames";
import { HTMLAttributes } from "react";
import React, { type HTMLAttributes } from "react";

import { iconClass } from "../../../utils/iconClass";
import { stopPropagationWrapper } from "../../../utils/stopPropagationWrapper";
Expand Down

0 comments on commit 11acfa3

Please sign in to comment.