A decentralized music tracking and discovery platform built on AT Protocol 🎵

fix: uncomment delete operations in StateStore and SessionStore

+2 -2
+2 -2
apps/api/src/auth/storage.ts
··· 26 26 .execute(); 27 27 } 28 28 async del(key: string) { 29 - // await this.db.deleteFrom("auth_state").where("key", "=", key).execute(); 29 + await this.db.deleteFrom("auth_state").where("key", "=", key).execute(); 30 30 } 31 31 } 32 32 ··· 52 52 .execute(); 53 53 } 54 54 async del(key: string) { 55 - // await this.db.deleteFrom("auth_session").where("key", "=", key).execute(); 55 + await this.db.deleteFrom("auth_session").where("key", "=", key).execute(); 56 56 } 57 57 }