Skip to content

Commit

Permalink
Missed one of the va-alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
jerekshoe committed Feb 16, 2024
1 parent 321a65b commit 0ee1b7b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@ class ViewPaymentsLists extends Component {
// If there are either payments OR payments returned, run payment list builders
const { returnPayments, payments } = this.props.payments;
if (returnPayments.length === 0 && payments.length === 0) {
content = <va-alert status="info">{NoPaymentsContent}</va-alert>;
content = (
<va-alert status="info" uswds>
{NoPaymentsContent}
</va-alert>
);
} else {
// run payments returned list builder
paymentsReturnedTable = this.buildReturnedPaymentListContent(
Expand Down

0 comments on commit 0ee1b7b

Please sign in to comment.