app,create-app: remove / prefixes in sidebar items

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-08-07 13:54:35 +02:00
parent 55a5dbd547
commit 9f8f8dd6b4
4 changed files with 15 additions and 3 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ sidebar:
export const Root = ({ children }: PropsWithChildren<{}>) => (
<SidebarPage>
<Sidebar>
+ <SidebarItem icon={HomeIcon} to="/catalog" text="Home" />
+ <SidebarItem icon={HomeIcon} to="catalog" text="Home" />
...
</Sidebar>
```