How to delete "Quick start" from code [ethereum boilerplate]

Hi I was watching this video
and I saw that it managed to change some things like deleting " Quick Start"

But the code is different from what is in the video

what code is different from that in the video?

found this related to quick start

Yeah i delete that part, But it hasn’t been deleted β€œQuick Start” from screen

<Route exact path="/quickstart">
      <QuickStart isServerInfo={isServerInfo} />
    </Route>

in the video when he deleted this part β€œQuick Start” right away from the screen

Maybe you need to redeploy the project after deleting that part

I republished it again, but the same problem

you could also get the final code from that repository: https://github.com/abdulmalik97/ethereum-boilerplate/blob/main/src/App.jsx

1 Like

Thanks for helping me

1 Like

Hello, I think that particular code is now moved to the MenuItems.jsx

  {/* <Menu.Item key="/quickstart">
        <NavLink to="/quickstart">πŸš€ Quick Start</NavLink>
      </Menu.Item> */}
      <Menu.Item key="/wallet">
        <NavLink to="/wallet">πŸ‘› Wallet</NavLink>
      </Menu.Item>
      <Menu.Item key="/1inch">
        <NavLink to="/1inch">🏦 Dex</NavLink>
      </Menu.Item>
      <Menu.Item key="onramp">
        <NavLink to="/onramp">πŸ’΅ Fiat</NavLink>
      </Menu.Item>``` 

Comment out the quickstart part.