Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Breadcrumbs v1 part six set uswds to false #28516

Merged
merged 4 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/applications/gi/components/GiBillBreadcrumbs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const GiBillBreadcrumbs = () => {
);
}

return <VaBreadcrumbs>{crumbs}</VaBreadcrumbs>;
return <VaBreadcrumbs uswds="false">{crumbs}</VaBreadcrumbs>;
};

export default GiBillBreadcrumbs;
2 changes: 1 addition & 1 deletion src/applications/medical-copays/components/AlertView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const AlertView = ({ pathname, alertType, error, cdpToggle, hasDebts }) => {

return (
<>
<VaBreadcrumbs label="Breadcrumb">
<VaBreadcrumbs uswds="false" label="Breadcrumb">
<a href="/">Home</a>
<a href="/health-care">Health care</a>
<a href="/health-care/pay-copay-bill">Pay your VA copay bill</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { useSelector } from 'react-redux';
import { uniqBy } from 'lodash';
import { VaBreadcrumbs } from '@department-of-veterans-affairs/web-components/react-bindings';
import scrollToTop from 'platform/utilities/ui/scrollToTop';

Check warning on line 5 in src/applications/medical-copays/containers/OverviewPage.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/medical-copays/containers/OverviewPage.jsx:5:1:Importing from platform via platform/utilities is deprecated. Import from @department-of-veterans-affairs/platform-utilities instead or check babel.config.json for an alias to the import.
import Balances from '../components/Balances';
import BalanceQuestions from '../components/BalanceQuestions';
import {
Expand Down Expand Up @@ -59,7 +59,7 @@
return (
<>
<div className="vads-u-font-family--sans no-wrap">
<VaBreadcrumbs label="Breadcrumb">
<VaBreadcrumbs uswds="false" label="Breadcrumb">
<a href="/">Home</a>
<a href="/health-care">Health care</a>
<a href="/health-care/pay-copay-bill">Pay your VA copay bill</a>
Expand Down