Skip to content

Commit

Permalink
fix: build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sriramveeraghanta committed May 31, 2024
1 parent 1cb26fa commit 9143e5a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const EmailNotificationForm: FC<IEmailNotificationFormProps> = (props) =>
render={({ field: { value, onChange } }) => (
<Checkbox
checked={value}
indeterminate={!value && watch("issue_completed")}
intermediate={!value && watch("issue_completed")}
onChange={() => {
setValue("issue_completed", !value, { shouldDirty: true });
onChange(!value);
Expand Down
10 changes: 4 additions & 6 deletions web/components/states/project-setting-state-list-item.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
import { useState } from "react";
import { observer } from "mobx-react";
import { useRouter } from "next/router";
// hooks
// ui
// icons
import { Pencil, X, ArrowDown, ArrowUp } from "lucide-react";
// types
import { IState } from "@plane/types";
// ui
import { Tooltip, StateGroupIcon } from "@plane/ui";
// icons
// helpers
import { addSpaceIfCamelCase } from "@/helpers/string.helper";
// hooks
import { useEventTracker, useProjectState } from "@/hooks/store";
import { usePlatformOS } from "@/hooks/use-platform-os";
// types

type Props = {
index: number;
Expand Down

0 comments on commit 9143e5a

Please sign in to comment.