Skip to content

Commit

Permalink
fix(www): hide sidebar-01 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
shadcn committed Aug 30, 2024
1 parent 5ad11ff commit 2fac3e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/www/app/(app)/blocks/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ import { ThemesSwitcher } from "@/components/themes-selector"

export default async function BlocksPage() {
const blocks = (await getAllBlockIds()).filter(
(name) => !name.startsWith("chart-")
(name) =>
!name.startsWith("chart-") &&
!name.startsWith("sidebar-01") &&
!name.startsWith("login-01")
)

// These themes are not compatible with the blocks yet.
Expand Down

0 comments on commit 2fac3e4

Please sign in to comment.