Skip to content

Commit d1a9831

Browse files
authored
feat(installation-commands) replace sonner with 8-bit toast (#201)
1 parent c21b2b4 commit d1a9831

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/docs/components/installation-commands.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import { useState } from "react"
44
import { Check, Clipboard } from "lucide-react"
5-
import { toast } from "sonner"
65

6+
import { toast } from "@/components/ui/8bit/toast"
77
import { Button } from "@/components/ui/button"
88
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
99

@@ -22,7 +22,7 @@ export default function InstallationCommands({
2222
const handleCopy = () => {
2323
navigator.clipboard.writeText(command)
2424
setCopied(true)
25-
toast.success("Command copied to clipboard")
25+
toast("Command copied to clipboard")
2626

2727
setTimeout(() => {
2828
setCopied(false)

0 commit comments

Comments
 (0)