From 330bf49492a8babf5a1fc5f8d4c88f3237a0c1f8 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Sat, 9 Oct 2021 19:55:44 +0200 Subject: feat(preview): image previewing --- 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 4463fb8..3791c74 100644 --- a/components/Sidebar/Link.tsx +++ b/components/Sidebar/Link.tsx @@ -134,14 +134,13 @@ export const PreviewLink = (props: LinkProps) => { ), img: ({ src }) => { - return + return }, }, }) const getText = () => { - console.log('gettin text') - fetch(`127.0.0.1:35901/file/${file}`) + fetch(`http://localhost:35901/file/${file}`) .then((res) => { return res.text() }) -- cgit v1.2.3