chore: access setting notes

This commit is contained in:
jialin
2025-11-21 20:10:21 +08:00
parent e80ecfac8d
commit f49001b742
15 changed files with 220 additions and 43 deletions
@@ -12,7 +12,8 @@ import AllowModelsForm from './allow-models';
const APIKeyForm: React.FC<{
action: PageActionType;
currentData?: Partial<ListItem> | null;
}> = ({ action, currentData }) => {
onValuesChange?: (changedValues: any, allValues: any) => void;
}> = ({ action, currentData, onValuesChange }) => {
const intl = useIntl();
return (
@@ -70,6 +71,7 @@ const APIKeyForm: React.FC<{
<AllowModelsForm
currentData={currentData}
action={action}
onValuesChange={onValuesChange}
></AllowModelsForm>
</>
);