Skip to content

Commit 626844b

Browse files
Fix AnnouncementBar visibility for non-paid users
1 parent 9a4f0ff commit 626844b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/window/Layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function Layout() {
1616
<CustomTitlebar />
1717
<AppSidebar />
1818
<ScrollArea className="h-[calc(100vh-38px)] px-4 py-2 w-full mt-[38px]">
19-
{isPaidUser && <AnnouncementBar />}
19+
{!isPaidUser && <AnnouncementBar />}
2020
<UpdateDialog />
2121
<Outlet />
2222
</ScrollArea>

0 commit comments

Comments
 (0)