We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0cc7dc commit cf209dfCopy full SHA for cf209df
1 file changed
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");
22
export let component = writable(componentsPathMap.get(`/${pathName}`));
23
export let componentParams = writable(getSearchParameters());
24
@@ -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