We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2224ed commit 6e182a3Copy full SHA for 6e182a3
MyMusicClientSveltePwa/src/app.css
@@ -22,6 +22,6 @@ body {
22
}
23
24
25
- .cursor {
26
- cursor: default;
27
- }
+.cursor {
+ cursor: default;
+}
MyMusicClientSveltePwa/src/lib/scripts/routeService.js
@@ -18,7 +18,7 @@ const NotFoundRoutePath = "/404";
18
const NotFoundPathName = "404";
19
20
21
-export let pathName = writable("Home");
+export let pathName = writable("home");
export let component = writable(componentsPathMap.get(`/${pathName}`));
export let componentParams = writable(getSearchParameters());
@@ -39,7 +39,7 @@ export function initializeRouteService() {
39
componentParams.set(parameters);
40
41
if (path === "/") {
42
- path = "/Home";
+ path = "/home";
43
44
45
pathName.set(path.split("/")[1]);
0 commit comments