diff --git a/src/app/src/features/navbar/components/NavbarLink.tsx b/src/app/src/features/navbar/components/NavbarLink.tsx index 9a1a5bd95..b001ea124 100644 --- a/src/app/src/features/navbar/components/NavbarLink.tsx +++ b/src/app/src/features/navbar/components/NavbarLink.tsx @@ -11,8 +11,8 @@ interface NavbarLinkProps { export function NavbarLink(props: NavbarLinkProps) { return ( -
- +
+ { props.label } diff --git a/src/app/src/workspace/Sidebar/index.tsx b/src/app/src/workspace/Sidebar/index.tsx index b69b2656d..e3e8042c1 100644 --- a/src/app/src/workspace/Sidebar/index.tsx +++ b/src/app/src/workspace/Sidebar/index.tsx @@ -1,7 +1,7 @@ import {Navbar} from "../../features/navbar"; export const Sidebar = () => { - return
+ return
; };