Skip to content

chore: remove dangling eslint-ignore comments #14334

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
nvm
  • Loading branch information
aslilac committed Aug 16, 2024
commit ce20dbe1c641becc7ca579c1c4cbeec005481025
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ interface GroupMember {
* @returns a diff with the 'members' key flattened to be an array of user_ids
*/
export const determineGroupDiff = (auditLogDiff: AuditDiff): AuditDiff => {
const old = (auditLogDiff.members?.old ?? []) as GroupMember[];
const new_ = (auditLogDiff.members?.new ?? []) as GroupMember[];
const old = auditLogDiff.members?.old as GroupMember[] | undefined;
const new_ = auditLogDiff.members?.new as GroupMember[] | undefined;

return {
...auditLogDiff,
members: {
old: old.map((groupMember) => groupMember.user_id),
new: new_.map((groupMember) => groupMember.user_id),
old: old?.map((groupMember) => groupMember.user_id),
new: new_?.map((groupMember) => groupMember.user_id),
secret: auditLogDiff.members?.secret,
},
};
Expand Down
Loading