Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ export default async function DevelopersLayout({
label: 'API Keys',
path: `/${organizationSlug}/${projectSlug}/developers/api-keys`
},
{
label: 'Paywall Locations',
path: `/${organizationSlug}/${projectSlug}/developers/paywall-locations`
},
// {
// label: 'Paywall Locations',
// path: `/${organizationSlug}/${projectSlug}/developers/paywall-locations`
// },
{
label: 'Perks',
path: `/${organizationSlug}/${projectSlug}/developers/perks`
Expand Down
9 changes: 0 additions & 9 deletions apps/web/features/shell/project-sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,6 @@ export function ProjectSidebar({
`/${organizationSlug}/${projectSlug}/products`
)
},
{
title: 'Paywalls',
url: `/${organizationSlug}/${projectSlug}/paywalls`,
icon: GalleryHorizontalEnd,
isActive: () =>
pathname.startsWith(
`/${organizationSlug}/${projectSlug}/paywalls`
)
},
{
title: 'Developers',
url: `/${organizationSlug}/${projectSlug}/developers`,
Expand Down
2 changes: 1 addition & 1 deletion apps/web/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const config = {
* 3. /_proxy/ (proxies for third-party services)
* 4. Metadata files: favicon.ico, sitemap.xml, robots.txt, manifest.webmanifest
*/
'/((?!api/|_next/|_proxy/|favicon.ico|sitemap.xml|robots.txt|manifest.webmanifest).*)'
'/((?!api/|_next/|_proxy/|favicon.ico|sitemap.xml|robots.txt|manifest.webmanifest|manifest.json).*)'
]
};

Expand Down
4 changes: 2 additions & 2 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@effect/platform": "^0.87.12",
"@effect/platform-node": "^0.89.5",
"@hono/zod-openapi": "beta",
"@hono/zod-validator": "^0.7.0",
"@hono/zod-validator": "^0.7.2",
"@hookform/resolvers": "^5.1.1",
"@polar-sh/nextjs": "^0.4.0",
"@react-three/drei": "^10.1.2",
Expand Down Expand Up @@ -67,7 +67,7 @@
"vite-tsconfig-paths": "^5.1.4",
"voidhash": "0.0.1-alpha.4",
"zod": "^4.0.2",
"zod-openapi": "^5.1.0"
"zod-openapi": "^5.3.1"
},
"devDependencies": {
"@effect/language-service": "^0.24.0",
Expand Down
14 changes: 10 additions & 4 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

86 changes: 20 additions & 66 deletions packages/ui/components/logo.tsx

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions packages/ui/hooks/use-mobile.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { useEffect, useState } from 'react';

const MOBILE_BREAKPOINT = 768;
Expand Down
Loading