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 023f6590da8..2fb0484dae4 100644 --- a/apps/web/core/store/issue/helpers/base-issues.store.ts +++ b/apps/web/core/store/issue/helpers/base-issues.store.ts @@ -1204,7 +1204,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 c5f37f794f5..7b1f59a6201 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 { CloseIcon } from "../icons/actions/close-icon"; 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,