mirror of
https://github.com/pionxzh/chatgpt-exporter.git
synced 2026-09-21 13:37:42 -05:00
fix: hide GPT-4 model text
This commit is contained in:
@@ -20,7 +20,7 @@ export async function exportToPng(fileNameFormat: string) {
|
||||
// hide model bar
|
||||
Array.from(thread.children).forEach((el) => {
|
||||
const text = el.textContent
|
||||
if (text === 'Model: Default' || text === 'Model: Legacy') {
|
||||
if (text === 'Model: Default' || text === 'Model: Legacy' || text === 'Model: GPT-4') {
|
||||
el.classList.add('hidden')
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user