fix:select color-format component and color copy-to-clipboard (#9056)

* fix:Nuqs adapter scope, select color-format component and color copy-to-clipboard

* chore: remove changeset

---------

Co-authored-by: shadcn <m@shadcn.com>
This commit is contained in:
ateeb a.
2025-12-15 14:57:10 +05:30
committed by GitHub
parent 0c2373f592
commit 4b561cf050
2 changed files with 5 additions and 3 deletions

View File

@@ -91,9 +91,11 @@ export default function RootLayout({
<ThemeProvider>
<LayoutProvider>
<ActiveThemeProvider>
<NuqsAdapter>{children}</NuqsAdapter>
<NuqsAdapter>
{children}
<Toaster position="top-center" />
</NuqsAdapter>
<TailwindIndicator />
<Toaster position="top-center" />
<Analytics />
</ActiveThemeProvider>
</LayoutProvider>

View File

@@ -40,7 +40,7 @@ export function ColorFormatSelector({
<span className="font-medium">Format: </span>
<span className="text-muted-foreground font-mono">{format}</span>
</SelectTrigger>
<SelectContent align="end" className="rounded-xl">
<SelectContent align="end" position="popper" className="rounded-xl">
{Object.entries(formats).map(([format, value]) => (
<SelectItem
key={format}