diff --git a/src/components/PluginSettings/components/SettingSelectComponent.tsx b/src/components/PluginSettings/components/SettingSelectComponent.tsx index ce35675c..430e62a1 100644 --- a/src/components/PluginSettings/components/SettingSelectComponent.tsx +++ b/src/components/PluginSettings/components/SettingSelectComponent.tsx @@ -16,9 +16,12 @@ * along with this program. If not, see . */ -import { PluginOptionSelect } from "../../../utils/types"; -import { Forms, React, Select } from "../../../webpack/common"; +import { FormSection, FormText, FormTitle } from "@components/Forms"; +import Select from "@components/Select"; + import { ISettingElementProps } from "."; +import { PluginOptionSelect } from "../../../utils/types"; +import { React } from "../../../webpack/common"; export function SettingSelectComponent({ option, pluginSettings, onChange, onError, id }: ISettingElementProps) { const def = pluginSettings[id] ?? option.options?.find(o => o.default)?.value; @@ -41,8 +44,8 @@ export function SettingSelectComponent({ option, pluginSettings, onChange, onErr } return ( - - {option.description} + + {option.description}