Fix chat render when OpenRouter "website setting" model used

ec49b19aff6af0743519d796725413d7b68f223b

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/reasoning.js+1 -1
@@ -94,7 +94,7 @@ export function isHiddenReasoningModel() {
94 { name: 'gemini-2.0-pro-exp', func: FUNCS.startsWith },94 { name: 'gemini-2.0-pro-exp', func: FUNCS.startsWith },
95 ];95 ];
9696
97 const model = getChatCompletionModel();97 const model = getChatCompletionModel() || '';
9898
99 const isHidden = hiddenReasoningModels.some(({ name, func }) => func(model, name));99 const isHidden = hiddenReasoningModels.some(({ name, func }) => func(model, name));
100 return isHidden;100 return isHidden;