Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nexarvo committed Mar 28, 2024
1 parent 7c9249e commit 52e1364
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/tasks/TaskAssigneeSelectorModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ function TaskAssigneeSelectorModal({reports, task}: TaskAssigneeSelectorModalPro
option?.login ?? '',
option?.accountID ?? -1,
report.reportID,
OptionsListUtils.isCurrentUser({...option, accountID: option?.accountID ?? -1, login: option?.login ?? ''}),
report,
OptionsListUtils.isCurrentUser({...option, accountID: option?.accountID ?? -1, login: option?.login ?? ''}),
);

// Pass through the selected assignee
Expand All @@ -194,8 +194,8 @@ function TaskAssigneeSelectorModal({reports, task}: TaskAssigneeSelectorModalPro
option?.login ?? '',
option.accountID,
task?.shareDestination ?? '',
OptionsListUtils.isCurrentUser({...option, accountID: option?.accountID ?? -1, login: option?.login ?? undefined}),
report,
OptionsListUtils.isCurrentUser({...option, accountID: option?.accountID ?? -1, login: option?.login ?? undefined}),
);
Navigation.goBack(ROUTES.NEW_TASK);
}
Expand Down

0 comments on commit 52e1364

Please sign in to comment.