Update EditChannel.js

Fixes an issue with the OpenAI models interface where it fails to get a list of models.
This commit is contained in:
迷糊虫
2024-12-13 13:36:03 +08:00
committed by GitHub
parent 2a6f3ad27f
commit 36bf4b3926

View File

@@ -220,7 +220,7 @@ const EditChannel = (props) => {
'Authorization': `Bearer ${key}` 'Authorization': `Bearer ${key}`
} }
}); });
if (res.data && res.data?.success) { if (res.data) {
models.push(...res.data.data.map((model) => model.id)); models.push(...res.data.data.map((model) => model.id));
} else { } else {
err = true; err = true;