diff --git a/.npmrc b/.npmrc
index 361b1968..525238b9 100644
--- a/.npmrc
+++ b/.npmrc
@@ -1,2 +1,4 @@
registry=https://registry.npmjs.org/
link-workspace-packages=true
+@tiptap-pro:registry=https://registry.tiptap.dev/
+//registry.tiptap.dev/:_authToken=${TIPTAP_TOKEN}
\ No newline at end of file
diff --git a/apps/web/.npmrc b/apps/web/.npmrc
new file mode 100644
index 00000000..e69de29b
diff --git a/apps/web/app/(dash)/(memories)/content.tsx b/apps/web/app/(dash)/(memories)/content.tsx
index 0f83d0fc..9dba3637 100644
--- a/apps/web/app/(dash)/(memories)/content.tsx
+++ b/apps/web/app/(dash)/(memories)/content.tsx
@@ -304,7 +304,13 @@ function SpaceComponent({
href={`/space/${id}`}
className="flex items-center justify-between w-full"
>
-
+
+
+ {title.slice(0, 2).toUpperCase()}
+ {id}
+
+
+
@@ -312,7 +318,7 @@ function SpaceComponent({
-
+
{
handleDeleteSpace(id);
diff --git a/apps/web/app/(dash)/menu.tsx b/apps/web/app/(dash)/menu.tsx
index abac5411..45cfc599 100644
--- a/apps/web/app/(dash)/menu.tsx
+++ b/apps/web/app/(dash)/menu.tsx
@@ -11,6 +11,7 @@ import {
} from "@repo/ui/icons";
import { Button } from "@repo/ui/shadcn/button";
import { MinusIcon, PlusCircleIcon } from "lucide-react";
+import Editor from "@/components/editor/advanced-editor";
import {
Dialog,
DialogContent,
@@ -58,20 +59,16 @@ function Menu() {
},
];
-
-
const [dialogOpen, setDialogOpen] = useState(false);
return (
- <>
+
{/* Desktop Menu */}