From 03641ca2868d5ef21ffe426fa547dd859ce1c474 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Sat, 9 Oct 2021 14:08:34 +0200 Subject: fix(preview): changed from api routing to emacs server --- components/Sidebar/Link.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'components/Sidebar/Link.tsx') 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() }) -- cgit v1.2.3