diff options
| author | Dhravya <[email protected]> | 2024-07-01 07:55:16 -0500 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-07-01 07:55:16 -0500 |
| commit | b00dbd46476636fea1f48bf5164136e3bf217349 (patch) | |
| tree | 2403fd1c546dd6fc0b94e5d72f6fb313e855a7f7 /apps/web/components/canvas | |
| parent | merge conflicts (diff) | |
| download | supermemory-dev.tar.xz supermemory-dev.zip | |
minor changes in extensiondev
Diffstat (limited to 'apps/web/components/canvas')
| -rw-r--r-- | apps/web/components/canvas/draggableComponent.tsx | 1 | ||||
| -rw-r--r-- | apps/web/components/canvas/resizableLayout.tsx | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/apps/web/components/canvas/draggableComponent.tsx b/apps/web/components/canvas/draggableComponent.tsx index da087156..36461163 100644 --- a/apps/web/components/canvas/draggableComponent.tsx +++ b/apps/web/components/canvas/draggableComponent.tsx @@ -40,6 +40,7 @@ function DraggableComponents({ content }: { content: string }) { animate={{ opacity: 1, y: 0 }} ref={containerRef} onDragEnd={handleDragEnd} + // @ts-expect-error TODO: fix this onDragStart={handleDragStart} draggable className={`flex gap-4 px-3 overflow-hidden rounded-md text-[#989EA4] border-2 transition ${isDragging ? "border-blue-600" : "border-[#1F2428]"}`} diff --git a/apps/web/components/canvas/resizableLayout.tsx b/apps/web/components/canvas/resizableLayout.tsx index 2ff27083..04e407fa 100644 --- a/apps/web/components/canvas/resizableLayout.tsx +++ b/apps/web/components/canvas/resizableLayout.tsx @@ -141,7 +141,9 @@ function SidePanel() { body: JSON.stringify({ query: search }), }); const t = await res.json(); + // @ts-expect-error TODO: fix this console.log(t.response.response); + // @ts-expect-error TODO: fix this setContent(t.response.response); }} > |