Skip to content

Commit

Permalink
Merge pull request #12329 from Expensify/aldo_fix-workspace-redbrick
Browse files Browse the repository at this point in the history
Fix redbrick path for workspace
  • Loading branch information
sketchydroide authored Nov 3, 2022
2 parents 1721965 + 2f2bf46 commit 7ffe2c0
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 @@ -129,7 +129,7 @@ class InitialSettingsPage extends React.Component {
.value();
const policyBrickRoadIndicator = _.chain(this.props.policies)
.filter(policy => policy && policy.type === CONST.POLICY.TYPE.FREE && policy.role === CONST.POLICY.ROLE.ADMIN)
.find(policy => PolicyUtils.getPolicyBrickRoadIndicatorStatus(policy, this.props.policyMembers))
.find(policy => PolicyUtils.hasPolicyError(policy) || PolicyUtils.getPolicyBrickRoadIndicatorStatus(policy, this.props.policyMembers))
.value() ? 'error' : null;

return ([
Expand Down

0 comments on commit 7ffe2c0

Please sign in to comment.