Reformat with prettier
diff --git a/src/utils/database.ts b/src/utils/database.ts
index 4fa93c2..1bb1904 100644
--- a/src/utils/database.ts
+++ b/src/utils/database.ts
@@ -21,8 +21,8 @@
 
 const mongoClient = new MongoClient(
     username
-        ? `mongodb://${username}:${password}@${config.mongoOptions.host}/${config.mongoOptions.database}`
-            + `?authMechanism=DEFAULT&authSource=${config.mongoOptions.authSource}`
+        ? `mongodb://${username}:${password}@${config.mongoOptions.host}/${config.mongoOptions.database}` +
+          `?authMechanism=DEFAULT&authSource=${config.mongoOptions.authSource}`
         : `mongodb://${config.mongoOptions.host}`
 );
 await mongoClient.connect();