From 0a7d8da4fe64ddd2c79b60e31d142df30279f266 Mon Sep 17 00:00:00 2001 From: ADRlANO Date: Thu, 14 Mar 2024 16:36:20 +0100 Subject: [PATCH] Adds the globe icon to /account route in nav.ts --- src/commands/add/misc/navbar/generators.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/add/misc/navbar/generators.ts b/src/commands/add/misc/navbar/generators.ts index e0bcb7a8..a4425232 100644 --- a/src/commands/add/misc/navbar/generators.ts +++ b/src/commands/add/misc/navbar/generators.ts @@ -189,7 +189,7 @@ type AdditionalLinks = { export const defaultLinks: SidebarLink[] = [ { href: "/dashboard", title: "Home", icon: HomeIcon },${ auth !== null - ? `\n { href: "/account", title: "Account", icon: Cog },` + ? `\n { href: "/account", title: "Account", icon: Globe },` : "" }${ componentLib === "shadcn-ui"