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.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/Sidebar/Link.tsx b/components/Sidebar/Link.tsx
index 57fb723..4463fb8 100644
--- a/components/Sidebar/Link.tsx
+++ b/components/Sidebar/Link.tsx
@@ -1,3 +1,4 @@
+/* eslint-disable react/display-name */
import {
Box,
Button,
@@ -140,7 +141,7 @@ export const PreviewLink = (props: LinkProps) => {
const getText = () => {
console.log('gettin text')
- fetch(`http://localhost:35901/file/${file}`)
+ fetch(`127.0.0.1:35901/file/${file}`)
.then((res) => {
return res.text()
})