We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ec3bbe commit ebaf9b8Copy full SHA for ebaf9b8
src/content-script/index.jsx
@@ -313,9 +313,11 @@ async function prepareForForegroundRequests() {
313
314
if (!chatgptWebModelKeys.some((model) => userConfig.activeApiModes.includes(model))) return
315
316
- const div = document.createElement('div')
317
- document.body.append(div)
318
- render(<NotificationForChatGPTWeb container={div} />, div)
+ if (chatgptWebModelKeys.includes(userConfig.modelName)) {
+ const div = document.createElement('div')
+ document.body.append(div)
319
+ render(<NotificationForChatGPTWeb container={div} />, div)
320
+ }
321
322
await Browser.runtime.sendMessage({
323
type: 'SET_CHATGPT_TAB',
0 commit comments