Skip to content

Commit

Permalink
Remove unnecessary ternary
Browse files Browse the repository at this point in the history
  • Loading branch information
puneetlath committed Sep 5, 2022
1 parent 1d1c61f commit a1e5d38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/settings/InitialSettingsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ class InitialSettingsPage extends React.Component {
iconFill: themeColors.iconReversed,
fallbackIcon: Expensicons.FallbackWorkspaceAvatar,
brickRoadIndicator: PolicyUtils.getPolicyBrickRoadIndicatorStatus(policy, this.props.policyMembers),
pendingAction: policy.pendingAction ? policy.pendingAction : null,
pendingAction: policy.pendingAction,
isPolicy: true,
}))
.value();
Expand Down

0 comments on commit a1e5d38

Please sign in to comment.