diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 96c1dab..b79ba65 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -1,7 +1,7 @@ on: push: branches: - - main + - stage permissions: contents: write @@ -18,3 +18,5 @@ jobs: token: ${{ secrets.GH_TOKEN }} config-file: release-please-config.json manifest-file: .release-please-manifest.json + default-branch: main + target-branch: main diff --git a/src/components/ComponentCard.tsx b/src/components/ComponentCard.tsx index 83c199a..8908d55 100644 --- a/src/components/ComponentCard.tsx +++ b/src/components/ComponentCard.tsx @@ -5,7 +5,7 @@ import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; // In a real project, this would be its own file with syntax highlighting (e.g., PrismJS or Shiki). import { Eye, Code2, Info, ChevronDown, ChevronUp } from "lucide-react"; import { Button } from "@/components/ui/button"; -import { Skeleton} from "@/components/ui/skeleton"; +import { Skeleton } from "@/components/ui/skeleton"; import { useTheme } from "next-themes"; import { CodeBlock } from "@/components/CodeBlock"; @@ -83,7 +83,7 @@ export const ComponentCard = ({ {renderTitle()} )} - + {/* Category Badge */} {!loading && category && ( diff --git a/src/data/components.tsx b/src/data/components.tsx index a8606c7..7cdac59 100644 --- a/src/data/components.tsx +++ b/src/data/components.tsx @@ -73,7 +73,6 @@ import { PlusIcon, HeartIcon, MessageCircleIcon } from "lucide-react"; import { SliderDemo } from "@/components/ui/sliderDemo"; - export const componentsData = [ { id: "button", @@ -182,7 +181,7 @@ export function SwitchDemo() { "An input where the user selects a value from within a given range.", category: "Form", // FIX: Using the separate functional component - preview: , + preview: , // Code snippet reflecting the correct controlled usage for users code: `import { Slider } from "@/components/ui/slider" @@ -528,7 +527,7 @@ export function DialogDemo() { ) }`, - }, + }, { id: "progress", title: "Progress",