File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ const Navigation = ({
1717 < Link to = { routes . PROFILE } > Profile</ Link >
1818 </ div >
1919 < div className = "Navigation-link" >
20- < Link to = { routes . HOME } > Organization</ Link >
20+ < Link to = { routes . ORGANIZATION } > Organization</ Link >
2121 </ div >
2222
23- { pathname === routes . HOME && (
23+ { pathname === routes . ORGANIZATION && (
2424 < OrganizationSearch
2525 initialValue = { initialValue }
2626 onOrganizationSearch = { onOrganizationSearch }
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class App extends Component {
3535 < div className = "App-main" >
3636 < Route
3737 exact
38- path = { routes . HOME }
38+ path = { routes . ORGANIZATION }
3939 component = { ( ) => (
4040 < div className = "App-content_large-header" >
4141 < Organization organizationName = { organizationName } />
Original file line number Diff line number Diff line change 1- export const HOME = '/' ;
1+ export const ORGANIZATION = '/' ;
22export const PROFILE = '/profile' ;
You can’t perform that action at this time.
0 commit comments