forked from open-webui/open-webui
fix: openai error message
This commit is contained in:
parent
d3b0b8ebd3
commit
4728d426d8
1 changed files with 2 additions and 2 deletions
|
@ -378,10 +378,10 @@
|
|||
})
|
||||
.catch((error) => {
|
||||
console.log(error);
|
||||
toast.error(`OpenAI: ${error.error.message}`);
|
||||
toast.error(`OpenAI: ${error?.error?.message ?? 'Network Problem'}`);
|
||||
return null;
|
||||
});
|
||||
const openaiModels = openaiModelRes.data;
|
||||
const openaiModels = openaiModelRes?.data ?? null;
|
||||
|
||||
if (openaiModels) {
|
||||
models = [
|
||||
|
|
Loading…
Reference in a new issue