Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Shahe Shahinyan committed Jan 26, 2024
1 parent 60ef074 commit 5412ac0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/components/ReportActionItem/TaskView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ function TaskView({report, policy, shouldShowHorizontalRule, ...props}: TaskView
}, [report]);

const taskTitle = convertToLTR(report.reportName ?? '');
const assigneeTooltipDetails = ReportUtils.getDisplayNamesWithTooltips(OptionsListUtils.getPersonalDetailsForAccountIDs(report.managerID ? [report.managerID] : [], props.personalDetails), false);
const assigneeTooltipDetails = ReportUtils.getDisplayNamesWithTooltips(
OptionsListUtils.getPersonalDetailsForAccountIDs(report.managerID ? [report.managerID] : [], props.personalDetails),
false,
);
const isCompleted = ReportUtils.isCompletedTaskReport(report);
const isOpen = ReportUtils.isOpenTaskReport(report);
const canModifyTask = Task.canModifyTask(report, props.currentUserPersonalDetails.accountID, policy?.role);
Expand Down
2 changes: 1 addition & 1 deletion src/types/utils/IconAsset.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type {ImageSourcePropType} from 'react-native';
import type {SvgProps} from 'react-native-svg/lib/typescript';
import type {Icon} from "@src/types/onyx/OnyxCommon";
import type {Icon} from '@src/types/onyx/OnyxCommon';

type IconAsset = React.FC<SvgProps> | ImageSourcePropType | Icon[];

Expand Down

0 comments on commit 5412ac0

Please sign in to comment.