Skip to content

Commit 6e182a3

Browse files
authored
Fix/potential bugs (#73)
* lol * this should be lowercase
1 parent b2224ed commit 6e182a3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

MyMusicClientSveltePwa/src/app.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ body {
2222
}
2323
}
2424

25-
.cursor {
26-
cursor: default;
27-
}
25+
.cursor {
26+
cursor: default;
27+
}

MyMusicClientSveltePwa/src/lib/scripts/routeService.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const NotFoundRoutePath = "/404";
1818
const NotFoundPathName = "404";
1919

2020

21-
export let pathName = writable("Home");
21+
export let pathName = writable("home");
2222
export let component = writable(componentsPathMap.get(`/${pathName}`));
2323
export let componentParams = writable(getSearchParameters());
2424

@@ -39,7 +39,7 @@ export function initializeRouteService() {
3939
componentParams.set(parameters);
4040

4141
if (path === "/") {
42-
path = "/Home";
42+
path = "/home";
4343
}
4444

4545
pathName.set(path.split("/")[1]);

0 commit comments

Comments
 (0)