From a33c280718a89cac33271395b6c6688b107fa882 Mon Sep 17 00:00:00 2001 From: Alexander Grattan Date: Tue, 3 Oct 2023 16:45:59 -0400 Subject: [PATCH] fix: prettier for redis --- apps/server/src/redis.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/server/src/redis.ts b/apps/server/src/redis.ts index 70988ee..0fd1499 100644 --- a/apps/server/src/redis.ts +++ b/apps/server/src/redis.ts @@ -1,8 +1,6 @@ import Redis from "ioredis"; -const redis = new Redis( -process.env.REDIS_URL ?? "" -); +const redis = new Redis(process.env.REDIS_URL ?? ""); // Listen to connection events to prevent TCP Issue // https://github.com/redis/ioredis/issues/1203