fix(hub): remove duplicate AI chat declarations causing white screen
Drop redeclared AI_CHAT_MAX_ATTACHMENTS and aiChatPendingFiles in app.js that broke script parsing after the chat perf update. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -3519,6 +3519,8 @@
|
|||||||
let aiSelectedBotMode = "trading";
|
let aiSelectedBotMode = "trading";
|
||||||
const AI_CHAT_MAX_ATTACHMENTS = 3;
|
const AI_CHAT_MAX_ATTACHMENTS = 3;
|
||||||
let aiChatPendingFiles = [];
|
let aiChatPendingFiles = [];
|
||||||
|
const aiChatMdCache = new Map();
|
||||||
|
const AI_CHAT_MD_CACHE_MAX = 120;
|
||||||
|
|
||||||
function aiChatFileKind(file) {
|
function aiChatFileKind(file) {
|
||||||
return file && file.type && file.type.startsWith("image/") ? "image" : "text";
|
return file && file.type && file.type.startsWith("image/") ? "image" : "text";
|
||||||
@@ -3623,11 +3625,6 @@
|
|||||||
addAiChatPendingFiles(imageFiles);
|
addAiChatPendingFiles(imageFiles);
|
||||||
}
|
}
|
||||||
|
|
||||||
const AI_CHAT_MAX_ATTACHMENTS = 3;
|
|
||||||
let aiChatPendingFiles = [];
|
|
||||||
const aiChatMdCache = new Map();
|
|
||||||
const AI_CHAT_MD_CACHE_MAX = 120;
|
|
||||||
|
|
||||||
function renderHubMarkdown(text, cacheKey) {
|
function renderHubMarkdown(text, cacheKey) {
|
||||||
const raw = String(text || "");
|
const raw = String(text || "");
|
||||||
if (cacheKey && aiChatMdCache.has(cacheKey)) {
|
if (cacheKey && aiChatMdCache.has(cacheKey)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user