fix(frontend): remove duplicate History link from NavBar

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
Woody 2026-04-26 18:48:31 +08:00
parent d7cf785452
commit 9f41a328e3
1 changed files with 0 additions and 12 deletions

View File

@ -53,18 +53,6 @@ export const NavBar: React.FC = () => {
> >
History History
</NavLink> </NavLink>
<NavLink
to="/history"
className={({ isActive }) =>
`text-sm font-medium transition-colors ${
isActive
? 'text-gray-900 border-b-2 border-gray-900'
: 'text-gray-500 hover:text-gray-700 border-b-2 border-transparent'
}`
}
>
History
</NavLink>
</div> </div>
</nav> </nav>
) )