From 76d50b00fa7663490250565099d58c68c31ef3c9 Mon Sep 17 00:00:00 2001 From: itsMapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Wed, 27 Jul 2022 18:31:12 -0500 Subject: [PATCH] imports --- packages/reacord/scripts/discordjs-manual-test.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/packages/reacord/scripts/discordjs-manual-test.tsx b/packages/reacord/scripts/discordjs-manual-test.tsx index 8c1439f..8e06aaa 100644 --- a/packages/reacord/scripts/discordjs-manual-test.tsx +++ b/packages/reacord/scripts/discordjs-manual-test.tsx @@ -1,13 +1,10 @@ -import type { TextChannel } from "discord.js" -import { ChannelType, Client, IntentsBitField } from "discord.js" +import { ChannelType, Client, IntentsBitField, TextChannel } from "discord.js" import "dotenv/config" -import { chunk, kebabCase } from "lodash-es" +import { kebabCase } from "lodash-es" import prettyMilliseconds from "pretty-ms" import React, { useEffect, useState } from "react" -import { generatePropCombinations } from "../helpers/generate-prop-combinations" import { raise } from "../helpers/raise" import { waitFor } from "../helpers/wait-for" -import type { ButtonProps } from "../library.new/main" import { Button, ReacordDiscordJs } from "../library.new/main" const client = new Client({ intents: IntentsBitField.Flags.Guilds })