Openstatus www.openstatus.dev

✏️ font drop down (#1348)

* ✏️

* ci: apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>

authored by

Thibault Le Ouay
autofix-ci[bot]
and committed by
GitHub
b34387ed f4bcfd54

+13 -7
+2 -2
apps/dashboard/src/app/(dashboard)/overview/page.tsx
··· 89 89 90 90 const metrics = [ 91 91 { 92 - title: "Total Monitors", 92 + title: "Monitors", 93 93 value: monitors.length, 94 94 href: "/monitors", 95 95 variant: "default" as const, 96 96 icon: List, 97 97 }, 98 98 { 99 - title: "Total Status Pages", 99 + title: "Status Pages", 100 100 value: pages.length, 101 101 href: "/status-pages", 102 102 variant: "default" as const,
+10 -4
apps/dashboard/src/components/nav/nav-user.tsx
··· 70 70 </Avatar> 71 71 <div className="grid flex-1 text-left text-sm leading-tight"> 72 72 <span className="truncate font-medium">{userName}</span> 73 - <span className="truncate text-xs">{user?.email}</span> 73 + <span className="truncate font-commit-mono text-xs"> 74 + {user?.email} 75 + </span> 74 76 </div> 75 77 <ChevronsUpDown className="ml-auto size-4" /> 76 78 </SidebarMenuButton> ··· 105 107 <Link 106 108 href="/settings/billing" 107 109 onClick={() => setOpenMobile(false)} 110 + className="font-commit-mono" 108 111 > 109 112 <Sparkles /> 110 113 Upgrade Workspace ··· 113 116 <DropdownMenuSeparator /> 114 117 </> 115 118 ) : null} 116 - <DropdownMenuGroup> 119 + <DropdownMenuGroup className="font-commit-mono"> 117 120 <DropdownMenuItem asChild> 118 121 <Link 119 122 href="/settings/account" ··· 135 138 Theme 136 139 </DropdownMenuSubTrigger> 137 140 <DropdownMenuPortal> 138 - <DropdownMenuSubContent> 141 + <DropdownMenuSubContent className="font-commit-mono"> 139 142 <DropdownMenuItem onClick={() => setTheme("light")}> 140 143 <Sun /> Light 141 144 </DropdownMenuItem> ··· 159 162 </DropdownMenuItem> 160 163 </DropdownMenuGroup> 161 164 <DropdownMenuSeparator /> 162 - <DropdownMenuItem onClick={() => signOut()}> 165 + <DropdownMenuItem 166 + onClick={() => signOut()} 167 + className="font-commit-mono" 168 + > 163 169 <LogOut /> 164 170 Log out 165 171 </DropdownMenuItem>
+1 -1
apps/dashboard/src/components/nav/workspace-switcher.tsx
··· 56 56 {workspace.name || "Untitled Workspace"} 57 57 </div> 58 58 <div className="truncate text-xs"> 59 - <span className="font-mono">{workspace.slug}</span>{" "} 59 + <span className="font-commit-mono">{workspace.slug}</span>{" "} 60 60 <span className="text-muted-foreground"> 61 61 {workspace.plan === "team" ? "pro" : workspace.plan} 62 62 </span>