chore: fix typos in comments (#8553)

This commit is contained in:
yy
2026-01-23 17:02:04 +09:00
committed by GitHub
parent 2a29ab8d4a
commit bb4f172e26
3 changed files with 3 additions and 3 deletions

View File

@@ -218,7 +218,7 @@ export const removeNillKeys = <T,>(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
*/

View File

@@ -589,7 +589,7 @@ export const removeNillKeys = <T,>(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
*/

View File

@@ -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];
}