mirror of
https://github.com/makeplane/plane.git
synced 2026-02-04 05:00:42 -06:00
chore: fix typos in comments (#8553)
This commit is contained in:
@@ -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
|
||||
*/
|
||||
|
||||
@@ -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
|
||||
*/
|
||||
|
||||
@@ -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];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user