Skip to content

Commit 404931e

Browse files
committed
Made the message when you’re in a developer preview project punchier
1 parent 57bf983 commit 404931e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

apps/webapp/app/components/navigation/SideMenu.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,11 @@ export function SideMenu({ user, project, organization, organizations }: SideMen
189189
</div>
190190
</div>
191191
<div className="m-2">
192-
<Callout variant={"info"}>
193-
{`This is a ${project.version === "V2" ? "v2" : "v3"} project`}
194-
</Callout>
192+
{project.version === "V2" ? (
193+
<Callout variant={"info"}>This is a v2 project</Callout>
194+
) : (
195+
<Callout variant={"idea"}>This is a v3 project in Developer Preview</Callout>
196+
)}
195197
</div>
196198
<div className="flex flex-col gap-1 border-t border-grid-bright p-1">
197199
{project.version === "V2" && (

0 commit comments

Comments
 (0)