Skip to content

Commit

Permalink
feat: reorder tab content in customizer
Browse files Browse the repository at this point in the history
  • Loading branch information
pheralb committed Jan 29, 2025
1 parent 5dce59d commit 4c6e06e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions website/src/components/playground/customizer/customizer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,20 @@ const Customizer = () => {
className="w-full overflow-y-auto border-b border-dashed border-neutral-200 pb-3 dark:border-neutral-800"
>
<TabsList className="w-full">
<TabsTrigger value="animations">Animations</TabsTrigger>
<TabsTrigger value="positions">Positions</TabsTrigger>
<TabsTrigger value="animations">Animations</TabsTrigger>
<TabsTrigger value="theme">Theme</TabsTrigger>
</TabsList>
<TabsContent value="animations">
<CustomizerBlock docUrl="/options#animationonclose">
<ToastAnimationsCustomizer />
</CustomizerBlock>
</TabsContent>
<TabsContent value="positions">
<CustomizerBlock docUrl="/toaster#position">
<ToastPositionsCustomizer />
</CustomizerBlock>
</TabsContent>
<TabsContent value="animations">
<CustomizerBlock docUrl="/options#animationonclose">
<ToastAnimationsCustomizer />
</CustomizerBlock>
</TabsContent>
<TabsContent value="theme">
<CustomizerBlock docUrl="/toaster#theme">
<ToastThemeCustomizer />
Expand Down

0 comments on commit 4c6e06e

Please sign in to comment.