fix: remove theme nav item (#37028)
This commit is contained in:
		
				
					committed by
					
						 mrugesh
						mrugesh
					
				
			
			
				
	
			
			
			
						parent
						
							1130a1c0df
						
					
				
				
					commit
					ece3dbac80
				
			| @@ -23,16 +23,16 @@ describe('<NavLinks />', () => { | ||||
|     return acc; | ||||
|   }, []); | ||||
|  | ||||
|   const expectedLinks = ['/learn', '/', '/portfolio']; | ||||
|   const expectedLinks = ['/learn', '/portfolio']; | ||||
|  | ||||
|   it('renders to the DOM', () => { | ||||
|     expect(root).toBeTruthy(); | ||||
|   }); | ||||
|   it('has 3 links', () => { | ||||
|     expect(aTags.length === 3).toBeTruthy(); | ||||
|   it('has 2 links', () => { | ||||
|     expect(aTags.length === 2).toBeTruthy(); | ||||
|   }); | ||||
|  | ||||
|   it('has links to learn, main, and portfolio', () => { | ||||
|   it('has links to learn and portfolio', () => { | ||||
|     // checks if all links in expected links exist in links | ||||
|     expect(expectedLinks.every(elem => links.indexOf(elem) > -1)).toBeTruthy(); | ||||
|   }); | ||||
|   | ||||
| @@ -14,9 +14,6 @@ function NavLinks({ displayMenu }) { | ||||
|         className={'nav-list' + (displayMenu ? ' display-flex' : '')} | ||||
|         role='menu' | ||||
|       > | ||||
|         <li className='nav-theme' role='menuitem'> | ||||
|           <Link to='/'>Light</Link> | ||||
|         </li> | ||||
|         <li className='nav-projects' role='menuitem'> | ||||
|           <Link to='/learn'>Projects</Link> | ||||
|         </li> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user