diff --git a/apps/cli/tsdown.config.ts b/apps/cli/tsdown.config.ts index ac6058b..edad9fb 100644 --- a/apps/cli/tsdown.config.ts +++ b/apps/cli/tsdown.config.ts @@ -5,7 +5,6 @@ export default defineConfig({ format: ["esm"], clean: true, shims: true, - minify: true, outDir: "dist", outputOptions: { banner: "#!/usr/bin/env node", diff --git a/apps/web/src/app/(home)/_components/stack-builder.tsx b/apps/web/src/app/(home)/_components/stack-builder.tsx index 94a3a25..0cffe55 100644 --- a/apps/web/src/app/(home)/_components/stack-builder.tsx +++ b/apps/web/src/app/(home)/_components/stack-builder.tsx @@ -38,7 +38,6 @@ import { useQueryStates } from "nuqs"; import type React from "react"; import { useEffect, useMemo, useRef, useState } from "react"; import { toast } from "sonner"; -import SponsorsSection from "./sponsors-section"; const validateProjectName = (name: string): string | undefined => { const INVALID_CHARS = ["<", ">", ":", '"', "|", "?", "*"]; @@ -1837,7 +1836,7 @@ const StackBuilder = () => { ? "cursor-not-allowed opacity-60" : "cursor-pointer", isSelected - ? "border-primary bg-primary/10 ring-1 ring-primary" + ? "border-primary bg-primary/10" : `border-border ${ !isDisabled ? "hover:border-muted hover:bg-muted" @@ -1909,7 +1908,6 @@ const StackBuilder = () => { ); })}
-