diff --git a/apps/dashboard/src/pages/api-keys.tsx b/apps/dashboard/src/pages/api-keys.tsx index e1058b7402a..bedb6ad180c 100644 --- a/apps/dashboard/src/pages/api-keys.tsx +++ b/apps/dashboard/src/pages/api-keys.tsx @@ -119,6 +119,15 @@ export function ApiKeysPage() { ); } +interface SettingFieldProps { + label: string; + tooltip?: string; + value?: string; + secret?: boolean; + isLoading?: boolean; + readOnly?: boolean; +} + function SettingField({ label, tooltip,