Skip to content

Commit fbffedc

Browse files
authored
Reenable subscriptions page (#1331)
* Reenable subscriptions page * Publish version v0.1.47
1 parent 1e6ad4d commit fbffedc

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

apps/studio/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"productName": "Onlook",
33
"name": "@onlook/studio",
4-
"version": "0.1.46",
4+
"version": "0.1.47",
55
"homepage": "https://onlook.com",
66
"main": "dist-electron/main/index.js",
77
"description": "The first-ever devtool for designers",

apps/studio/src/routes/editor/TopBar/ProjectSelect/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { invokeMainChannel } from '@/lib/utils';
55
import ProjectSettingsModal from '@/routes/projects/ProjectSettingsModal';
66
import { MainChannels } from '@onlook/models/constants';
77
import { Button } from '@onlook/ui/button';
8-
import { Dialog, DialogTrigger } from '@onlook/ui/dialog';
8+
import { Dialog, DialogContent, DialogTrigger } from '@onlook/ui/dialog';
99
import {
1010
DropdownMenu,
1111
DropdownMenuContent,
@@ -20,6 +20,7 @@ import { Icons } from '@onlook/ui/icons';
2020
import { cn } from '@onlook/ui/utils';
2121
import { observer } from 'mobx-react-lite';
2222
import { useRef, useState } from 'react';
23+
import PricingPage from '../Profile/PricingPage';
2324

2425
const ProjectBreadcrumb = observer(() => {
2526
const editorEngine = useEditorEngine();
@@ -177,6 +178,9 @@ const ProjectBreadcrumb = observer(() => {
177178
open={isSettingsOpen}
178179
onOpenChange={setIsSettingsOpen}
179180
/>
181+
<DialogContent className="w-screen h-screen max-w-none m-0 p-0 rounded-none">
182+
<PricingPage />
183+
</DialogContent>
180184
</Dialog>
181185
</>
182186
);

0 commit comments

Comments
 (0)