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 ccd0f9b commit 3f06e3dCopy full SHA for 3f06e3d
client/web/plugins/com.msgbyte.ai-assistant/src/popover.tsx
@@ -144,7 +144,8 @@ export const AssistantPopover: React.FC<{
144
onClick={async () => {
145
const plainMessages = (
146
await Promise.all(
147
- messages
+ [...messages]
148
+ .filter((item) => !item.hasRecall) // filter recalled message
149
.slice(messages.length - 30, messages.length) // get last 30 message, too much will throw error
150
.map(
151
async (item) =>
0 commit comments