diff options
| author | codetorso <[email protected]> | 2024-06-04 21:08:22 +0530 |
|---|---|---|
| committer | codetorso <[email protected]> | 2024-06-04 21:08:22 +0530 |
| commit | 7ceaddf6f499cda8f4ded9a02e6f511a7372f11b (patch) | |
| tree | fbd6631a3f0fb99b8dbb5f427de06017cda96955 /packages | |
| parent | Implemented Highlight in Extension (diff) | |
| download | supermemory-7ceaddf6f499cda8f4ded9a02e6f511a7372f11b.tar.xz supermemory-7ceaddf6f499cda8f4ded9a02e6f511a7372f11b.zip | |
Implement extension
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/ui/shadcn/use-toast.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/ui/shadcn/use-toast.ts b/packages/ui/shadcn/use-toast.ts index 6f6180cc..80c3abff 100644 --- a/packages/ui/shadcn/use-toast.ts +++ b/packages/ui/shadcn/use-toast.ts @@ -3,7 +3,7 @@ // Inspired by react-hot-toast library import * as React from "react"; -import type { ToastActionElement, ToastProps } from "packages/ui/src/toast"; +import type { ToastActionElement, ToastProps } from "@repo/ui/shadcn/toast"; const TOAST_LIMIT = 1; const TOAST_REMOVE_DELAY = 1000000; |