From 5aef491b56918f7da96324a5091dfc3a1c7a264d Mon Sep 17 00:00:00 2001 From: Yohei Yamamoto Date: Sat, 17 Jan 2026 17:25:56 +0900 Subject: [PATCH] chore: fix typos in comments --- apps/space/core/components/issues/issue-layouts/utils.tsx | 2 +- apps/web/core/components/issues/issue-layouts/utils.tsx | 2 +- apps/web/core/store/issue/helpers/base-issues.store.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/space/core/components/issues/issue-layouts/utils.tsx b/apps/space/core/components/issues/issue-layouts/utils.tsx index e8e2a6c6995..33d811bd511 100644 --- a/apps/space/core/components/issues/issue-layouts/utils.tsx +++ b/apps/space/core/components/issues/issue-layouts/utils.tsx @@ -218,7 +218,7 @@ export const removeNillKeys = (obj: T) => Object.fromEntries(Object.entries(obj ?? {}).filter(([key, value]) => key && !isNil(value))); /** - * This Method returns if the the grouped values are subGrouped + * This Method returns if the grouped values are subGrouped * @param groupedIssueIds * @returns */ diff --git a/apps/web/core/components/issues/issue-layouts/utils.tsx b/apps/web/core/components/issues/issue-layouts/utils.tsx index d3cca81dd74..1417343b8ae 100644 --- a/apps/web/core/components/issues/issue-layouts/utils.tsx +++ b/apps/web/core/components/issues/issue-layouts/utils.tsx @@ -589,7 +589,7 @@ export const removeNillKeys = (obj: T) => Object.fromEntries(Object.entries(obj ?? {}).filter(([key, value]) => key && !isNil(value))); /** - * This Method returns if the the grouped values are subGrouped + * This Method returns if the grouped values are subGrouped * @param groupedIssueIds * @returns */ 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 29488348867..f336c225cb4 100644 --- a/apps/web/core/store/issue/helpers/base-issues.store.ts +++ b/apps/web/core/store/issue/helpers/base-issues.store.ts @@ -1469,7 +1469,7 @@ export abstract class BaseIssuesStore implements IBaseIssuesStore { // if the key for accumulator is not the current action, // Meaning if the key already has an action ADD and the current one is REMOVE, - // The the key is deleted as both the actions cancel each other out + // The key is deleted as both the actions cancel each other out if (accumulator[key] !== action) { delete accumulator[key]; }