diff --git a/apps/www/content/docs/components/toast.mdx b/apps/www/content/docs/components/toast.mdx index f772be60ca..87b6c45dec 100644 --- a/apps/www/content/docs/components/toast.mdx +++ b/apps/www/content/docs/components/toast.mdx @@ -104,7 +104,7 @@ export default function RootLayout({ children }) { The `useToast` hook returns a `toast` function that you can use to display a toast. ```tsx -import { useToast } from "@/components/hooks/use-toast" +import { useToast } from "@/hooks/use-toast" ``` ```tsx {2,7-10}