{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "toast-prevent-duplicates-demo", "registryDependencies": [ "https://reusables.vercel.app/r/notify" ], "files": [ { "path": "registry/example/toast-prevent-duplicates-demo.tsx", "content": "\"use client\"\n\nimport { toast } from \"@/packages/notify/src\"\n\nimport { Button } from \"@/components/ui/button\"\n\nexport default function ToastPreventDuplicatesDemo() {\n return (\n
\n \n toast.info(\"This will not duplicate\", {\n preventDuplicates: true,\n description: \"Try clicking multiple times\",\n })\n }\n >\n Prevent Duplicates\n \n
\n )\n}\n", "type": "registry:example", "target": "components/toast-prevent-duplicates-demo.tsx" } ], "type": "registry:example" }