diff options
| author | nexxeln <[email protected]> | 2025-12-04 18:54:40 +0000 |
|---|---|---|
| committer | nexxeln <[email protected]> | 2025-12-04 18:54:40 +0000 |
| commit | 7a2f2cb99c50038e932f898838ab60715c4e47d6 (patch) | |
| tree | 3bc23f5810349ec848a4c8cf71fd0a310efbd4e2 /apps/web/components | |
| parent | chore(@supermemory/tools): fix the documentation of withSupermemory (#601) (diff) | |
| download | supermemory-use-memory-graph-package.tar.xz supermemory-use-memory-graph-package.zip | |
use latest graph and remove old graph (#604)use-memory-graph-package
Diffstat (limited to 'apps/web/components')
| -rw-r--r-- | apps/web/components/content-cards/google-docs.tsx | 2 | ||||
| -rw-r--r-- | apps/web/components/content-cards/note.tsx | 2 | ||||
| -rw-r--r-- | apps/web/components/content-cards/tweet.tsx | 2 | ||||
| -rw-r--r-- | apps/web/components/content-cards/website.tsx | 2 | ||||
| -rw-r--r-- | apps/web/components/graph-dialog.tsx | 2 | ||||
| -rw-r--r-- | apps/web/components/masonry-memory-list.tsx | 2 | ||||
| -rw-r--r-- | apps/web/components/memories-utils/index.tsx | 2 | ||||
| -rw-r--r-- | apps/web/components/memory-list-view.tsx | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/apps/web/components/content-cards/google-docs.tsx b/apps/web/components/content-cards/google-docs.tsx index 6b44a064..aa7da8cd 100644 --- a/apps/web/components/content-cards/google-docs.tsx +++ b/apps/web/components/content-cards/google-docs.tsx @@ -16,7 +16,7 @@ import { } from "@repo/ui/components/alert-dialog" import { ExternalLink, FileText, Brain, Trash2 } from "lucide-react" import { cn } from "@lib/utils" -import { colors } from "@repo/ui/memory-graph/constants" +import { colors } from "@repo/ui/colors" import { getPastelBackgroundColor } from "../memories-utils" interface GoogleDocsCardProps { diff --git a/apps/web/components/content-cards/note.tsx b/apps/web/components/content-cards/note.tsx index 5fd6f740..ea0e362c 100644 --- a/apps/web/components/content-cards/note.tsx +++ b/apps/web/components/content-cards/note.tsx @@ -12,7 +12,7 @@ import { AlertDialogTrigger, } from "@repo/ui/components/alert-dialog" -import { colors } from "@repo/ui/memory-graph/constants" +import { colors } from "@repo/ui/colors" import { Brain, ExternalLink, Trash2 } from "lucide-react" import { cn } from "@lib/utils" import { useState } from "react" diff --git a/apps/web/components/content-cards/tweet.tsx b/apps/web/components/content-cards/tweet.tsx index b2599770..adab6134 100644 --- a/apps/web/components/content-cards/tweet.tsx +++ b/apps/web/components/content-cards/tweet.tsx @@ -26,7 +26,7 @@ import { AlertDialogTrigger, } from "@repo/ui/components/alert-dialog" import { Brain, Trash2 } from "lucide-react" -import { colors } from "@repo/ui/memory-graph/constants" +import { colors } from "@repo/ui/colors" import { getPastelBackgroundColor } from "../memories-utils" type MyTweetProps = { diff --git a/apps/web/components/content-cards/website.tsx b/apps/web/components/content-cards/website.tsx index fed79f4a..b14b7a9f 100644 --- a/apps/web/components/content-cards/website.tsx +++ b/apps/web/components/content-cards/website.tsx @@ -16,7 +16,7 @@ import { ExternalLink, Trash2 } from "lucide-react" import { useState } from "react" import { cn } from "@lib/utils" import { getPastelBackgroundColor } from "../memories-utils" -import { colors } from "@repo/ui/memory-graph/constants" +import { colors } from "@repo/ui/colors" interface WebsiteCardProps { title: string diff --git a/apps/web/components/graph-dialog.tsx b/apps/web/components/graph-dialog.tsx index 8849d4ce..efc1c05b 100644 --- a/apps/web/components/graph-dialog.tsx +++ b/apps/web/components/graph-dialog.tsx @@ -6,7 +6,7 @@ import type { DocumentsWithMemoriesResponseSchema } from "@repo/validation/api" import { useInfiniteQuery } from "@tanstack/react-query" import { useCallback, useEffect, useMemo, useState } from "react" import type { z } from "zod" -import { MemoryGraph } from "@repo/ui/memory-graph" +import { MemoryGraph } from "@supermemory/memory-graph" import { Dialog, DialogContent } from "@repo/ui/components/dialog" import { ConnectAIModal } from "@/components/connect-ai-modal" import { AddMemoryView } from "@/components/views/add-memory" diff --git a/apps/web/components/masonry-memory-list.tsx b/apps/web/components/masonry-memory-list.tsx index 1a29093f..1ffd2130 100644 --- a/apps/web/components/masonry-memory-list.tsx +++ b/apps/web/components/masonry-memory-list.tsx @@ -2,7 +2,7 @@ import { useIsMobile } from "@hooks/use-mobile" import type { DocumentsWithMemoriesResponseSchema } from "@repo/validation/api" -import { colors } from "@repo/ui/memory-graph/constants" +import { colors } from "@repo/ui/colors" import { Sparkles } from "lucide-react" import { Masonry, useInfiniteLoader } from "masonic" import { memo, useCallback, useMemo, useState } from "react" diff --git a/apps/web/components/memories-utils/index.tsx b/apps/web/components/memories-utils/index.tsx index fca4d367..01f45781 100644 --- a/apps/web/components/memories-utils/index.tsx +++ b/apps/web/components/memories-utils/index.tsx @@ -1,4 +1,4 @@ -import type { DocumentWithMemories } from "@ui/memory-graph/types" +import type { DocumentWithMemories } from "@supermemory/memory-graph" export const formatDate = (date: string | Date) => { const dateObj = new Date(date) diff --git a/apps/web/components/memory-list-view.tsx b/apps/web/components/memory-list-view.tsx index 6fc80afa..f8869fd3 100644 --- a/apps/web/components/memory-list-view.tsx +++ b/apps/web/components/memory-list-view.tsx @@ -15,7 +15,7 @@ import { AlertDialogTitle, AlertDialogTrigger, } from "@repo/ui/components/alert-dialog" -import { colors } from "@repo/ui/memory-graph/constants" +import { colors } from "@repo/ui/colors" import type { DocumentsWithMemoriesResponseSchema } from "@repo/validation/api" import { useVirtualizer } from "@tanstack/react-virtual" import { Brain, ExternalLink, Sparkles, Trash2 } from "lucide-react" |