docs: fix typos in code comments (#9318)

Corrects 'satifies' to 'satisfies' and 'Donot' to 'Do not' in code comments.
This commit is contained in:
Adam Hmida Loghmari
2026-09-02 18:55:00 +01:00
committed by GitHub
parent 9f73d08c23
commit 1cd3d4dfd4
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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<typeof Popover> = {
title: "Components/Popover",
component: Popover,