From 5b6f98b836073853315bce4e5f553168dba7d82a Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Fri, 2 Jun 2023 17:08:39 +0200 Subject: [PATCH] Removed the index.js from the import statements in the RemoteSFTP.jsx --- client/src/pages/tools/linux/RemoteSFTP/RemoteSFTP.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/pages/tools/linux/RemoteSFTP/RemoteSFTP.jsx b/client/src/pages/tools/linux/RemoteSFTP/RemoteSFTP.jsx index f73067d..fc3d876 100644 --- a/client/src/pages/tools/linux/RemoteSFTP/RemoteSFTP.jsx +++ b/client/src/pages/tools/linux/RemoteSFTP/RemoteSFTP.jsx @@ -1,7 +1,7 @@ -import InfoArea from "@/common/components/InfoArea/index.js"; -import Button from "@/common/components/Button/index.js"; +import InfoArea from "@/common/components/InfoArea"; +import Button from "@/common/components/Button"; import {faGear} from "@fortawesome/free-solid-svg-icons"; -import ErrorArea from "@/common/components/ErrorArea/index.js"; +import ErrorArea from "@/common/components/ErrorArea"; import "./styles.sass"; export const RemoteSFTP = () => {