A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: type error

+1 -1
+1 -1
src/components/output/raw/atproto/element.js
··· 486 486 this.#writeDraining = true; 487 487 488 488 while (this.#writeQueue.length > 0) { 489 - const { fn, resolve, reject } = /** @type {NonNullable<typeof this.#writeQueue[0]>} */ ( 489 + const { fn, resolve, reject } = /** @type {{ fn: () => Promise<void>, resolve: () => void, reject: (err: unknown) => void }} */ ( 490 490 this.#writeQueue.shift() 491 491 ); 492 492 try {