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

commented out any mention of worker compensation #55

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/components/navigation/NavigationBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -322,9 +322,9 @@ const NavBar = ({ setMobileState }) => {
<SubItem to={links.landing_manifesto}>
Manifesto
</SubItem>
<SubItem to={links.landing_worker_compensation}>
Worker Compensation
</SubItem>
{/*<SubItem to={links.landing_worker_compensation}>*/}
{/* Worker Compensation*/}
{/*</SubItem>*/}
<SubItem to="/faq">FAQ</SubItem>
</SubMenu>
</MenuItem>
Expand Down Expand Up @@ -468,12 +468,12 @@ const NavBar = ({ setMobileState }) => {
>
Manifesto
</DropdownItem>
<DropdownItem
to={links.landing_worker_compensation}
onClick={toggleMenu}
>
Worker Compensation
</DropdownItem>
{/*<DropdownItem*/}
{/* to={links.landing_worker_compensation}*/}
{/* onClick={toggleMenu}*/}
{/*>*/}
{/* Worker Compensation*/}
{/*</DropdownItem>*/}
<DropdownItem
to={links.landing_faq}
onClick={toggleMenu}
Expand Down
8 changes: 4 additions & 4 deletions src/pages/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { FAQ } from './faq';
import { BrandAssets } from './brand-assets';
import { Codebase } from './codebase';
import { Manifesto } from './manifesto';
import { WorkerCompensation } from './worker-compensation';

import React from 'react';

export const Router = () => {
Expand All @@ -27,9 +27,9 @@ export const Router = () => {
<Route exact path="/manifesto">
<Manifesto />
</Route>
<Route exact path="/worker-compensation">
<WorkerCompensation />
</Route>
{/*<Route exact path="/worker-compensation">*/}
{/* <WorkerCompensation />*/}
{/*</Route>*/}
</Switch>
</React.Fragment>
);
Expand Down