Add the parameter appid to apiserver (#18224)

This commit is contained in:
AirLin
2025-04-16 23:07:05 +08:00
committed by GitHub
parent c91045a9d0
commit 6da7e6158f
2 changed files with 4 additions and 2 deletions

View File

@@ -7,9 +7,11 @@ import SecretKeyButton from '@/app/components/develop/secret-key/secret-key-butt
type ApiServerProps = {
apiBaseUrl: string
appId?: string
}
const ApiServer: FC<ApiServerProps> = ({
apiBaseUrl,
appId,
}) => {
const { t } = useTranslation()
@@ -25,7 +27,7 @@ const ApiServer: FC<ApiServerProps> = ({
{t('appApi.ok')}
</div>
<SecretKeyButton
className='!h-8 shrink-0'
className='!h-8 shrink-0' appId={appId}
/>
</div>
)