Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnmclean committed Jan 2, 2025
1 parent 9f2319b commit 2de52e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import { CloudUpload, Trash2Icon } from "lucide-react";
import { useDropzone } from "react-dropzone";
import { tv } from "tailwind-variants";

import { UploadedAsset, useAssetFileUpload } from "~/hooks/useAssetFileUpload";
import type { UploadedAsset } from "~/hooks/useAssetFileUpload";
import { useAssetFileUpload } from "~/hooks/useAssetFileUpload";

const dropzoneStyles = tv({
base: "flex flex-col items-center justify-center w-full h-64 border-2 border-dashed rounded-lg",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ import { Button } from "@sovoli/ui/components/button";
import { Form } from "@sovoli/ui/components/form";
import { Input } from "@sovoli/ui/components/input";
import { Spinner } from "@sovoli/ui/components/spinner";
import { set } from "lodash";

import type { State } from "../actions/newNoteAction";
import type { UploadedAsset } from "~/hooks/useAssetFileUpload";
import { Editor } from "~/components/Editor/Editor";
import { UploadedAsset } from "~/hooks/useAssetFileUpload";
import { newNoteAction } from "../actions/newNoteAction";
import { AssetManager } from "./AssetManager";

Expand Down

0 comments on commit 2de52e3

Please sign in to comment.