We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a35009 commit 6fcbfd6Copy full SHA for 6fcbfd6
src/App.tsx
@@ -36,7 +36,10 @@ export const App = () => {
36
1900: 'Evening Activities',
37
},
38
}
39
- const hash = new URL(window.location.href).hash?.substr(1) ?? false
+ const hash =
40
+ new URLSearchParams(window.location.search).get('schedule') ??
41
+ new URL(window.location.href).hash?.substr(1) ??
42
+ false
43
44
if (hash) {
45
cfg = {
0 commit comments