Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
gakshita committed Jan 7, 2025
1 parent 4070aec commit cb86ae8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions web/core/components/stickies/sticky/inputs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { EditorRefApi } from "@plane/editor";
import { TSticky } from "@plane/types";
import { TextArea } from "@plane/ui";
import { useWorkspace } from "@/hooks/store";
import { TProject } from "@/plane-web/types";
import { StickyEditor } from "../../editor";

type TProps = {
Expand All @@ -23,7 +22,7 @@ export const StickyInput = (props: TProps) => {
// store hooks
const { getWorkspaceBySlug } = useWorkspace();
// form info
const { handleSubmit, reset, control } = useForm<TProject>({
const { handleSubmit, reset, control } = useForm<TSticky>({
defaultValues: {
description_html: stickyData?.description_html,
name: stickyData?.name,
Expand Down
1 change: 0 additions & 1 deletion web/ee/components/stickies/index.ts

This file was deleted.

0 comments on commit cb86ae8

Please sign in to comment.