feat(chat): add one-click Plaza publish for HTML page messages.
Speed up the quick-plaza path with session snapshot reads, publish timeouts, and a modal fix so parent re-renders no longer abort in-flight requests. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -581,7 +581,9 @@ export function createPublicationService(pool, options = {}) {
|
||||
findings: result.findings,
|
||||
});
|
||||
}
|
||||
const acknowledged = new Set(input.acknowledgedFindingIds ?? []);
|
||||
const acknowledged = input.autoAcknowledgeFindings
|
||||
? new Set(result.findings.map((finding) => finding.id))
|
||||
: new Set(input.acknowledgedFindingIds ?? []);
|
||||
const missingAcknowledgements = result.findings.filter(
|
||||
(finding) => !finding.blocking && !acknowledged.has(finding.id),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user