From b162d8c72e70d4bd7729e9b68a45a28cd71ccccf Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sun, 31 Oct 2021 22:16:37 +0200 Subject: [PATCH] fix: add missing noop import --- backend/src/plugins/Automod/actions/startThread.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/plugins/Automod/actions/startThread.ts b/backend/src/plugins/Automod/actions/startThread.ts index 03a2dda2..0fead10b 100644 --- a/backend/src/plugins/Automod/actions/startThread.ts +++ b/backend/src/plugins/Automod/actions/startThread.ts @@ -3,7 +3,7 @@ import { TextChannel } from "discord.js"; import * as t from "io-ts"; import { renderTemplate, TemplateSafeValueContainer } from "../../../templateFormatter"; import { ChannelTypeStrings } from "../../../types"; -import { convertDelayStringToMS, MINUTES, tDelayString, tNullable } from "../../../utils"; +import { convertDelayStringToMS, MINUTES, noop, tDelayString, tNullable } from "../../../utils"; import { savedMessageToTemplateSafeSavedMessage, userToTemplateSafeUser } from "../../../utils/templateSafeObjects"; import { automodAction } from "../helpers";