chore: remove unused component imports and styles from text-renderer (#10478)

This commit is contained in:
donteatfriedrice
2025-02-27 08:54:15 +00:00
parent d57ef5c5b3
commit 272d41e32d
2 changed files with 3 additions and 13 deletions

View File

@@ -110,7 +110,9 @@ const collectChat = async (page: Page) => {
return [];
}
// wait ai response
await page.waitForSelector('.chat-panel-messages .message chat-copy-more');
await page.waitForSelector('.chat-panel-messages .message chat-copy-more', {
timeout: ONE_MINUTE,
});
await page.waitForTimeout(200);
const lastMessage = await chatPanel.$$('.message').then(m => m[m.length - 1]);
await lastMessage.waitForSelector('chat-copy-more');