Remove await

This commit is contained in:
@s.roertgen 2025-04-22 10:19:06 +02:00
parent 1a4a97ef89
commit c26760eb6d

View file

@ -73,7 +73,7 @@ export const userBoards = derived([user, boards], ([$user, $boards]) => {
export const db = writable({
user: null,
ndk: await initNDK(),
ndk: initNDK(),
currentBoardId: null
});