Reformat code
diff --git a/src/utils/database.ts b/src/utils/database.ts
index ddee338..abb638f 100644
--- a/src/utils/database.ts
+++ b/src/utils/database.ts
@@ -144,12 +144,14 @@
     }
 
     async staffChannels(): Promise<string[]> {
-        const entries = (await this.guilds
-            .find(
-                { "logging.staff.channel": { $exists: true } },
-                { projection: { "logging.staff.channel": 1, _id: 0 } }
-            )
-            .toArray()).map((e) => e.logging.staff.channel);
+        const entries = (
+            await this.guilds
+                .find(
+                    { "logging.staff.channel": { $exists: true } },
+                    { projection: { "logging.staff.channel": 1, _id: 0 } }
+                )
+                .toArray()
+        ).map((e) => e.logging.staff.channel);
         const out: string[] = [];
         for (const entry of entries) {
             if (entry) out.push(entry);