diff --git a/src/const.ts b/src/const.ts
index fca81645a7da79d58e33ca12d3c39ca0a3506098..9bdd260595177e25b2b7a8acc96145ac05766692 100644
--- a/src/const.ts
+++ b/src/const.ts
@@ -4,5 +4,5 @@ export const DEV_MODE = process.env.NODE_ENV === 'development';
 export const BASE_URL = DEV_MODE ? "http://localhost:3000" : "https://iot.wzl-mq.rwth-aachen.de/soil";
 export const DATA_BACKEND = DEV_MODE ? "http://localhost:8402" : "https://iot.wzl-mq.rwth-aachen.de/soil-data"
 // export const SOIL_BACKEND = DEV_MODE ? "http://localhost:8001" : "https://iot.wzl-mq.rwth-aachen.de/soil-backend"
-export const SOIL_BACKEND = DEV_MODE ? "http://localhost:8412" : "http://localhost:8412"
+export const SOIL_BACKEND = DEV_MODE ? "http://localhost:8412" : "https://iot.wzl-mq.rwth-aachen.de/soil-backend"
 // export const SOIL_BACKEND = DEV_MODE ? "https://iot.wzl-mq.rwth-aachen.de/soil-backend" : "https://iot.wzl-mq.rwth-aachen.de/soil-backend"
\ No newline at end of file
diff --git a/src/features/demoProjects/DemoProjects.tsx b/src/features/demoProjects/DemoProjects.tsx
index 8fcea6c3882849d2720678948bab51e3b6917ed1..aedbe0bf43add073a9644c523e1959bfa80fd2b5 100644
--- a/src/features/demoProjects/DemoProjects.tsx
+++ b/src/features/demoProjects/DemoProjects.tsx
@@ -5,6 +5,7 @@ import CloudDownloadIcon from '@mui/icons-material/CloudDownload';
 import { useAppDispatch } from '../../store/hooks';
 import { addTextModel, importPrivateProject, Project, selectPrivateProjects } from '../soil-editor/soileditorSlice';
 import { Tooltip, Divider, Avatar, ListItemAvatar, ListItem, ListItemText, List} from '@mui/material';
+
 export function DemoProjects() {
     const dispatch = useAppDispatch()
 
diff --git a/src/features/privateProjects/PrivateProjects.tsx b/src/features/privateProjects/PrivateProjects.tsx
index afe4226932b27de93b6ceee6d2bdffe59c8f73c3..005752135e005fd2dc752d2e49152ca758d88c82 100644
--- a/src/features/privateProjects/PrivateProjects.tsx
+++ b/src/features/privateProjects/PrivateProjects.tsx
@@ -7,6 +7,7 @@ import { deleteProjectById, importPrivateProject, Project, selectPrivateProjects
 import { Tooltip, Divider, Avatar, ListItemAvatar, ListItem, ListItemText, List} from '@mui/material';
 import DeleteIcon from '@mui/icons-material/Delete';
 import { DeleteWarningeDialog } from './deleteWarningDialog';
+
 export function PrivateProjects() {
     const privateProjects = useAppSelector(selectPrivateProjects);
     const dispatch = useAppDispatch();