diff --git a/apps/web/core/store/issue/helpers/base-issues.store.ts b/apps/web/core/store/issue/helpers/base-issues.store.ts index 09c24d25f4..c0de20f495 100644 --- a/apps/web/core/store/issue/helpers/base-issues.store.ts +++ b/apps/web/core/store/issue/helpers/base-issues.store.ts @@ -1212,7 +1212,7 @@ export abstract class BaseIssuesStore implements IBaseIssuesStore { const issueId = issue?.id ?? issueBeforeUpdate?.id; if (!issueId) return; - // Get display filters to check if 'Show sub Work items' is enabled - Donot add Work item to main list if disabled. + // Get display filters to check if 'Show sub Work items' is enabled - Do not add Work item to main list if disabled. const isShowWorkItemsEnabled = this.issueFilterStore.issueFilters?.displayFilters?.sub_issue ?? false; // get issueUpdates from another method by passing down the three arguments diff --git a/packages/propel/src/popover/popover.stories.tsx b/packages/propel/src/popover/popover.stories.tsx index d1d782b31d..8f184d4844 100644 --- a/packages/propel/src/popover/popover.stories.tsx +++ b/packages/propel/src/popover/popover.stories.tsx @@ -10,7 +10,7 @@ import { useArgs } from "storybook/preview-api"; import { CloseOutline } from "@makeplane/propel/icons"; import { Popover } from "./root"; -// cannot use satifies here because base-ui does not have portable types. +// cannot use satisfies here because base-ui does not have portable types. const meta: Meta = { title: "Components/Popover", component: Popover,