diff --git a/common/strings.ts b/common/strings.ts index 2d4e0a967..7e31106eb 100644 --- a/common/strings.ts +++ b/common/strings.ts @@ -3,7 +3,6 @@ import { client } from "strife.js"; import constants from "../common/constants.ts"; import { gracefulFetch } from "../util/promises.ts"; - const usercount = await gracefulFetch<{ count: number; _chromeCountDate: string }>( `${constants.urls.usercount}?date=${Date.now()}`, ); diff --git a/modules/logging/roles.ts b/modules/logging/roles.ts index 02c901d21..8290e59da 100644 --- a/modules/logging/roles.ts +++ b/modules/logging/roles.ts @@ -1,5 +1,4 @@ -import type { AuditLogEvent, RoleMention } from "discord.js"; -import type { Role } from "discord.js"; +import type { AuditLogEvent, Role, RoleMention } from "discord.js"; import type { AuditLog } from "./util.ts"; import { roleMention } from "discord.js"; diff --git a/modules/reminders/send.ts b/modules/reminders/send.ts index abfa0c4bc..1c416364b 100644 --- a/modules/reminders/send.ts +++ b/modules/reminders/send.ts @@ -1,13 +1,7 @@ import type { Channel } from "discord.js"; import type { Reminder } from "./misc.ts"; -import { - ActivityType, - MessageFlags, - time, - TimestampStyles, - userMention, -} from "discord.js"; +import { ActivityType, MessageFlags, time, TimestampStyles, userMention } from "discord.js"; import { client, logError } from "strife.js"; import config from "../../common/config.ts";