Skip to content

Commit

Permalink
fix(ui): import named components
Browse files Browse the repository at this point in the history
  • Loading branch information
brunozoric committed May 14, 2024
1 parent 581d748 commit 30f3e83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ui/src/ImageUpload/MultiImageUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { css } from "emotion";
import classNames from "classnames";
import { FormElementMessage } from "../FormElementMessage";
import Image from "./Image";
import ImageEditorDialog from "./ImageEditorDialog";
import { ImageEditorDialog } from "./ImageEditorDialog";
import { FormComponentProps } from "../types";

const imagesStyle = css({
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/ImageUpload/SingleImageUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { FormElementMessage } from "~/FormElementMessage";
import styled from "@emotion/styled";
import classNames from "classnames";
import Image from "./Image";
import ImageEditorDialog from "./ImageEditorDialog";
import { ImageEditorDialog } from "./ImageEditorDialog";

const ImageUploadWrapper = styled("div")({
position: "relative",
Expand Down

0 comments on commit 30f3e83

Please sign in to comment.