Skip to content

Commit

Permalink
remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
fourcels committed Feb 8, 2025
1 parent 71608ad commit 3d1994c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 6 additions & 0 deletions packages/react-image-upload/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @fourcels/react-image-upload

## 0.6.3

### Patch Changes

- remove unused import

## 0.6.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-image-upload/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fourcels/react-image-upload",
"version": "0.6.2",
"version": "0.6.3",
"type": "module",
"description": "A image upload component for React",
"main": "./dist/index.js",
Expand Down
1 change: 0 additions & 1 deletion packages/react-image-upload/src/Dropzone.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { DropzoneOptions, useDropzone } from "react-dropzone";
import clsx from "clsx";
import { forwardRef, useImperativeHandle } from "react";
import { u } from "motion/react-client";

const PlusIcon = () => (
<svg
Expand Down
3 changes: 1 addition & 2 deletions packages/react-image-upload/src/ImageUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import "react-photo-view/dist/react-photo-view.css";
import "./style.css";
import { PhotoProviderProps } from "react-photo-view/dist/PhotoProvider";
import { Dropzone } from "./Dropzone";
import { image, use } from "motion/react-client";

const RemoveIcon = () => (
<svg
Expand Down Expand Up @@ -60,7 +59,7 @@ type ValueItem = {
type ValueType = string | ValueItem | (string | ValueItem)[];

type ImageItem = {
id?: string;
id: string;
url?: string;
name?: string;
file?: File;
Expand Down

0 comments on commit 3d1994c

Please sign in to comment.