aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2024-07-27 10:10:39 -0500
committerGitHub <[email protected]>2024-07-27 10:10:39 -0500
commit7e66d47bd59a92db076e1719f24cfc358b7e6481 (patch)
tree950efb69963f287889521c8f8b18037498b6b9ca
parentMerge pull request #173 from siddarthpai/168 (diff)
parentUpdate line of memories to not overflow (diff)
downloadsupermemory-7e66d47bd59a92db076e1719f24cfc358b7e6481.tar.xz
supermemory-7e66d47bd59a92db076e1719f24cfc358b7e6481.zip
Merge pull request #175 from aryankeluskar/main
Update line of memories to not overflow
-rw-r--r--apps/web/app/(dash)/(memories)/content.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/(dash)/(memories)/content.tsx b/apps/web/app/(dash)/(memories)/content.tsx
index de0027bc..4514d851 100644
--- a/apps/web/app/(dash)/(memories)/content.tsx
+++ b/apps/web/app/(dash)/(memories)/content.tsx
@@ -312,7 +312,7 @@ function LinkComponent({
<div className="text-lg text-[#fff] mt-4 line-clamp-2">
{title.replace(/(<---chunkId: .*?\n.*?\n---->)/g, "")}
</div>
- <div className="line-clamp-3 mt-2">
+ <div className="truncate line-clamp-3 mt-2">
{content.replace(title, "")}
</div>
</>