diff --git a/apps/space/core/components/issues/issue-layouts/utils.tsx b/apps/space/core/components/issues/issue-layouts/utils.tsx index e8e2a6c699..33d811bd51 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 d3cca81dd7..1417343b8a 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 2948834886..f336c225cb 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]; }