summaryrefslogtreecommitdiff
path: root/components/Sidebar/Link.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/Sidebar/Link.tsx')
-rw-r--r--components/Sidebar/Link.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/components/Sidebar/Link.tsx b/components/Sidebar/Link.tsx
index 9515b6d..1211cb4 100644
--- a/components/Sidebar/Link.tsx
+++ b/components/Sidebar/Link.tsx
@@ -129,10 +129,9 @@ export const PreviewLink = (props: LinkProps) => {
},
})
- const file = encodeURIComponent(nodeById[id]?.file as string)
+ const file = encodeURIComponent(encodeURIComponent(nodeById[id]?.file as string))
const getText = () => {
- console.log(nodeById[id]?.title)
- fetch(`api/notes/${file}`)
+ fetch(`http://localhost:35901/file/${file}`)
.then((res) => {
return res.text()
})