diff --git a/app/components/BreadCrumbs/index.tsx b/app/components/BreadCrumbs/index.tsx
index aa633b4..bee0053 100644
--- a/app/components/BreadCrumbs/index.tsx
+++ b/app/components/BreadCrumbs/index.tsx
@@ -10,7 +10,11 @@ interface Props {
const BreadCrumbs = ({ children }: Props) => {
const { serverid, path } = useParams();
- return
{children}
;
+ return (
+
+ );
};
export default BreadCrumbs;
diff --git a/app/components/FilesEditor/BreadCrumbs/index.tsx b/app/components/FilesEditor/BreadCrumbs/index.tsx
index 5f2cc33..556043e 100644
--- a/app/components/FilesEditor/BreadCrumbs/index.tsx
+++ b/app/components/FilesEditor/BreadCrumbs/index.tsx
@@ -50,6 +50,7 @@ const index = ({ serverId, path, changeDirectory }: Props) => {
);
})}
+