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 4 set uswds to false #28514

Merged
merged 4 commits into from Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all 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/toe/containers/ToeApp.jsx
Expand Up @@ -3,8 +3,8 @@
import { isArray } from 'lodash';
import PropTypes from 'prop-types';

import RoutedSavableApp from 'platform/forms/save-in-progress/RoutedSavableApp';

Check warning on line 6 in src/applications/toe/containers/ToeApp.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/toe/containers/ToeApp.jsx:6:1:Importing from platform via platform/forms is deprecated. Import from @department-of-veterans-affairs/platform-forms instead or check babel.config.json for an alias to the import.
import { setData } from 'platform/forms-system/src/js/actions';

Check warning on line 7 in src/applications/toe/containers/ToeApp.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/toe/containers/ToeApp.jsx:7:1:Importing from platform via platform/forms-system is deprecated. Import from @department-of-veterans-affairs/platform-forms-system instead or check babel.config.json for an alias to the import.

import formConfig from '../config/form';
import { fetchPersonalInformation, fetchDirectDeposit } from '../actions';
Expand All @@ -26,7 +26,7 @@
user,
showMebEnhancements,
showMebEnhancements06,
showMebEnhancements08,

Check warning on line 29 in src/applications/toe/containers/ToeApp.jsx

View workflow job for this annotation

GitHub Actions / Linting (Files Changed)

src/applications/toe/containers/ToeApp.jsx:29:3:'showMebEnhancements08' is missing in props validation
}) {
const [fetchedUserInfo, setFetchedUserInfo] = useState(false);
const [fetchedDirectDeposit, setFetchedDirectDeposit] = useState(false);
Expand Down Expand Up @@ -125,7 +125,7 @@

return (
<>
<va-breadcrumbs>
<va-breadcrumbs uswds="false">
<a href="/">Home</a>
<a href="/education">Education and training</a>
<a href="/education/survivor-dependent-benefits/transferred-benefits/">
Expand Down
Expand Up @@ -31,5 +31,5 @@ export default function EnrollmentVerificationBreadcrumbs() {
</a>,
);
}
return <va-breadcrumbs>{breadcrumbs}</va-breadcrumbs>;
return <va-breadcrumbs uswds="false">{breadcrumbs}</va-breadcrumbs>;
}