From 95216f5accde88af067b8821f2f0df309507633c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Tue, 6 Jun 2023 07:11:45 +0300 Subject: [PATCH] Remove unused variable in isDev function --- src/client/funcs/isDev.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client/funcs/isDev.ts b/src/client/funcs/isDev.ts index e601633..d68dba3 100644 --- a/src/client/funcs/isDev.ts +++ b/src/client/funcs/isDev.ts @@ -1,7 +1,6 @@ import { Snowflake } from "discord.js"; export default function isDev(devIDs : any[], authorID : Snowflake){ - let response = false; for (const devID of devIDs){ if(authorID == devID){ return true;