33 ArrowRightOnRectangleIcon ,
44 BeakerIcon ,
55 BellAlertIcon ,
6- BookOpenIcon ,
76 ChartBarIcon ,
87 ChevronRightIcon ,
98 ClockIcon ,
@@ -59,16 +58,11 @@ import {
5958import connectedImage from "../../assets/images/cli-connected.png" ;
6059import disconnectedImage from "../../assets/images/cli-disconnected.png" ;
6160import { FreePlanUsage } from "../billing/FreePlanUsage" ;
61+ import { InlineCode } from "../code/InlineCode" ;
6262import { useDevPresence } from "../DevPresence" ;
6363import { ImpersonationBanner } from "../ImpersonationBanner" ;
6464import { Button , ButtonContent , LinkButton } from "../primitives/Buttons" ;
65- import {
66- Dialog ,
67- DialogContent ,
68- DialogFooter ,
69- DialogHeader ,
70- DialogTrigger ,
71- } from "../primitives/Dialog" ;
65+ import { Dialog , DialogContent , DialogHeader , DialogTrigger } from "../primitives/Dialog" ;
7266import { Paragraph } from "../primitives/Paragraph" ;
7367import {
7468 Popover ,
@@ -86,7 +80,6 @@ import { HelpAndFeedback } from "./HelpAndFeedbackPopover";
8680import { SideMenuHeader } from "./SideMenuHeader" ;
8781import { SideMenuItem } from "./SideMenuItem" ;
8882import { SideMenuSection } from "./SideMenuSection" ;
89- import { InlineCode } from "../code/InlineCode" ;
9083
9184type SideMenuUser = Pick < User , "email" | "admin" > & { isImpersonating : boolean } ;
9285export type SideMenuProject = Pick <
@@ -280,7 +273,7 @@ function ProjectSelector({
280273
281274 let plan : string | undefined = undefined ;
282275 if ( currentPlan ?. v3Subscription ?. isPaying === false ) {
283- plan = "Free plan " ;
276+ plan = "Free" ;
284277 } else if ( currentPlan ?. v3Subscription ?. isPaying === true ) {
285278 plan = currentPlan . v3Subscription . plan ?. title ;
286279 }
@@ -326,7 +319,7 @@ function ProjectSelector({
326319 className = "text-xs"
327320 to = { v3BillingPath ( organization ) }
328321 >
329- { plan } { plan !== "Free plan" && "plan" }
322+ { plan } plan
330323 </ TextLink >
331324 ) }
332325 < TextLink
0 commit comments