diff --git a/apps/nextjs/src/app/[locale]/manage/apps/_form.tsx b/apps/nextjs/src/app/[locale]/manage/apps/_form.tsx index 367092e30..d024a9c36 100644 --- a/apps/nextjs/src/app/[locale]/manage/apps/_form.tsx +++ b/apps/nextjs/src/app/[locale]/manage/apps/_form.tsx @@ -9,7 +9,8 @@ import { useI18n } from "@homarr/translation/client"; import type { z } from "@homarr/validation"; import { validation } from "@homarr/validation"; -// TODO: add icon picker +import { IconPicker } from "~/components/icons/picker/icon-picker"; + type FormType = z.infer; interface AppFormProps { @@ -38,10 +39,11 @@ export const AppForm = (props: AppFormProps) => {
- { + form.setFieldValue("iconUrl", iconUrl); + }} />