feat: disable automatic refresh in model versions fetch

This commit is contained in:
Will Miao
2025-10-28 09:11:39 +08:00
parent e2f3e57f5c
commit ce3adaf831

View File

@@ -483,7 +483,7 @@ export function initVersionsTab({
try {
const client = ensureClient();
const response = await client.fetchModelUpdateVersions(modelId, {
refresh: true,
refresh: false,
});
if (!response?.success) {
throw new Error(response?.error || 'Request failed');