This commit is contained in:
tree🌴 2024-03-06 20:41:59 +01:00
parent 085edb35fe
commit 7949cc3c30
1 changed files with 4 additions and 1 deletions

View File

@ -42,7 +42,10 @@ onMount(() => {
const id = searchParams.get('id');
if (id) {
eventSelected.set(id);
}
const speaker = searchParams.get('speaker');
if (speaker) {
speakerSelected.set(speaker);
}
});