From a31423034fd99761217130ac5decad6d8d4bf324 Mon Sep 17 00:00:00 2001 From: Elvyra <88881326+EepyElvyra@users.noreply.github.com> Date: Fri, 3 Jan 2025 21:07:12 +0100 Subject: [PATCH] Guhh nobody saw this --- .../PluginSettings/components/SettingArrayComponent.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/components/PluginSettings/components/SettingArrayComponent.tsx b/src/components/PluginSettings/components/SettingArrayComponent.tsx index 283bb9f2c..8d7e706ef 100644 --- a/src/components/PluginSettings/components/SettingArrayComponent.tsx +++ b/src/components/PluginSettings/components/SettingArrayComponent.tsx @@ -69,12 +69,7 @@ export function SettingArrayComponent({ } return (GuildStore.getGuild(channel.guild_id)?.name ?? "Unknown Guild") + " - " + channel.name; } - - /* Pseudocode for handling submit */ function handleSubmit() { - // Handle the submit action for the specific item - // This could involve updating the state, making an API call, etc. - // Clear the input field after submission const inputElement = document.getElementById(`vc-plugin-modal-input-${option.type === OptionType.CHANNELS ? "channel" : option.type === OptionType.GUILDS ? "guild" : option.type === OptionType.USERS ? "user" : "string"}`) as HTMLInputElement; if (!inputElement || inputElement.value === "") { return;