'use client' import React from 'react' import { useTranslation } from 'react-i18next' import Loading from '@/app/components/base/loading' import { useAppDetail } from '@/service/use-apps' import type { App } from '@/types/app' import cn from '@/utils/classnames' type Props = { appDetail: App } const AppInputsPanel = ({ appDetail, }: Props) => { const { t } = useTranslation() const { data: currentApp, isFetching: isLoading } = useAppDetail(appDetail.id) const inputs = [] return (