We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2334c0 commit eb7652cCopy full SHA for eb7652c
1 file changed
src/components/tutorial/TutorialWindow.tsx
@@ -9,6 +9,7 @@ import {
9
useRef,
10
useState,
11
} from "react";
12
+import { toast } from "sonner";
13
import { steps as articles } from "@/data/tutorial";
14
import { useScrollShadow } from "@/hooks/use-scroll-shadow";
15
import { cn } from "@/lib/utils";
@@ -21,7 +22,6 @@ import { Button } from "../ui/button";
21
22
import { ScrollArea } from "../ui/scroll-area";
23
import { ScrollShadow } from "../ui/scroll-shadow";
24
import { TutorialTableOfContents } from "./TutorialTableOfContents";
-import { toast } from "sonner";
25
26
function CopyArticleLinkButton({ activeStep }: { activeStep: string | null }) {
27
const [copied, setCopied] = useState(false);
0 commit comments