From a6d8ca5a6ba3678fbf7d7fae3dd78520cf2c0cf7 Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Wed, 3 Sep 2025 09:50:50 -0700 Subject: [PATCH] chore: format imports --- .../admin/GeneralPage/components/GeneralPageForm.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/admin/GeneralPage/components/GeneralPageForm.tsx b/frontend/src/pages/admin/GeneralPage/components/GeneralPageForm.tsx index dfc8db0c4..da15f5eea 100644 --- a/frontend/src/pages/admin/GeneralPage/components/GeneralPageForm.tsx +++ b/frontend/src/pages/admin/GeneralPage/components/GeneralPageForm.tsx @@ -5,7 +5,16 @@ import { zodResolver } from "@hookform/resolvers/zod"; import { z } from "zod"; import { createNotification } from "@app/components/notifications"; -import { Button, FormControl, Input, Select, SelectClear, SelectItem, Switch, TextArea } from "@app/components/v2"; +import { + Button, + FormControl, + Input, + Select, + SelectClear, + SelectItem, + Switch, + TextArea +} from "@app/components/v2"; import { useServerConfig } from "@app/context"; import { useGetOrganizations, useUpdateServerConfig } from "@app/hooks/api";