Skip to content

Commit

Permalink
Make charge with balance conditional, update illustration, update pro…
Browse files Browse the repository at this point in the history
…file (#1583)
  • Loading branch information
hmarcks authored Jan 1, 2022
1 parent 1358605 commit 4d63948
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
Binary file added src/frontend/public/img/wipe-illustrations-v3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/frontend/src/components/About/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export default class About extends React.Component {
He joined Code for PDX in 2018 to contribute to civic
technology and has primarily worked on RecordSponge. He has
been working on digital products for over ten years and
currently designs software at Renew Financial.
currently designs software at Higg.
</dd>
</dl>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/components/Landing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ class Landing extends React.Component {
<img
className="wipe-illustrations"
alt=""
src="/img/wipe-illustrations-v2.jpg"
src="/img/wipe-illustrations-v3.jpg"
/>
</div>
<div className="mw7 center">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,20 @@ export default class ChargesList extends React.Component<Props> {
);
}
);
return (
<>
<li className="fw7 pt2">{caseHeaderWithBalance}</li>
{listItemsInCase}
</>
);
if ( caseHeaderWithBalance ) {
return (
<>
<li className="fw7 pt2">{caseHeaderWithBalance}</li>
{listItemsInCase}
</>
);
} else {
return (
<>
{listItemsInCase}
</>
);
}
});
}

Expand Down

0 comments on commit 4d63948

Please sign in to comment.