Skip to content

Commit

Permalink
removed unnecessary spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
ruizajtruss committed Jan 29, 2024
1 parent bf6b312 commit 8476462
Showing 1 changed file with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,21 @@ export const RateSummary = (): React.ReactElement => {
asCustom={NavLink}
//TODO: Will have to remove this conditional once the rate dashboard is made available to state users
to={{
pathname: loggedInUser?.__typename === 'StateUser' ? RoutesRecord.DASHBOARD : RoutesRecord.DASHBOARD_RATES,
pathname:
loggedInUser?.__typename === 'StateUser'
? RoutesRecord.DASHBOARD
: RoutesRecord.DASHBOARD_RATES,
}}
>
<Icon.ArrowBack />
<span>&nbsp;Back to dashboard</span>
</Link>
</div>
<SingleRateSummarySection
rate={rate}
isSubmitted // can assume isSubmitted because we are building for CMS users
statePrograms={rate.state.programs}
/>
<SingleRateSummarySection
rate={rate}
isSubmitted // can assume isSubmitted because we are building for CMS users
statePrograms={rate.state.programs}
/>
</GridContainer>
</div>
)
Expand Down

0 comments on commit 8476462

Please sign in to comment.