Remove console logs

This commit is contained in:
@s.roertgen 2025-05-06 09:05:49 +02:00
parent ef79a633e7
commit fd3ebab19d

View file

@ -23,14 +23,11 @@
let event = writable(); let event = writable();
async function joinSession() { async function joinSession() {
console.log('join ' + sessionId);
const filter = { const filter = {
kinds: [30342], kinds: [30342],
'#d': [sessionId + ''] // filter by `d` tag '#d': [sessionId + ''] // filter by `d` tag
}; };
console.log(filter);
const questionEvent = await $ndk.fetchEvent(filter); const questionEvent = await $ndk.fetchEvent(filter);
console.log('question', question);
$questionId = `${questionEvent.kind}:${questionEvent.pubkey}:${questionEvent.dTag}`; $questionId = `${questionEvent.kind}:${questionEvent.pubkey}:${questionEvent.dTag}`;
goto('/q/' + $questionId); goto('/q/' + $questionId);
login(); login();