Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ivonne-hernandez committed Nov 9, 2023
1 parent 5c5f732 commit 10673bc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Components/Results/Results.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ const Results = ({ handleTextFieldChange }: ResultsProps) => {
//this is only to cap the totalVisibleRowDollarValue for preschool
const typedFiltCategory = filt.category as GridFilterItem;
if (typedFiltCategory.value === childCareYouthAndEducationCategoryString) {
const childCareYouthAndEducationDollarValue = renderAllCategoryValues(eligiblePrograms)[childCareYouthAndEducationCategoryString];
const childCareYouthAndEducationDollarValue =
renderAllCategoryValues(eligiblePrograms)[childCareYouthAndEducationCategoryString];
setTotalVisibleRowDollarValue(childCareYouthAndEducationDollarValue);
return;
}
Expand Down Expand Up @@ -731,7 +732,8 @@ const Results = ({ handleTextFieldChange }: ResultsProps) => {
</span>
</Toolbar>
{currentCategory.defaultMessage ===
categories.find((cat) => cat.defaultMessage === childCareYouthAndEducationCategoryString)?.defaultMessage && (
categories.find((cat) => cat.defaultMessage === childCareYouthAndEducationCategoryString)
?.defaultMessage && (
<Typography variant="body2" className="child-care-helper-text">
<FormattedMessage
id="benefitCategories.childCareHelperText"
Expand Down

0 comments on commit 10673bc

Please sign in to comment.