homarr-labs / homarr

Found unused variables in TypeScript code JS-0356
Performance
Major
4 months ago8 months old
 23  integration: RouterOutputs["integration"]["byId"];
 24}
 25
 26export const EditIntegrationForm = ({ integration }: EditIntegrationForm) => { 27  const t = useI18n();
 28  const { openConfirmModal } = useConfirmModal();
 29  const secretsKinds =
 17  user: RouterOutputs["user"]["getById"];
 18}
 19
 20export const UserProfileAvatarForm = ({ user }: UserProfileAvatarForm) => { 21  const { mutate } = clientApi.user.setProfileImage.useMutation();
 22  const [opened, { toggle }] = useDisclosure(false);
 23  const { openConfirmModal } = useConfirmModal();