Refactor chat input & properly update state for proposal

This commit is contained in:
Will Chen
2025-04-18 12:32:57 -07:00
parent db7ac39c97
commit b2e3631a29
10 changed files with 140 additions and 48 deletions

View File

@@ -117,3 +117,8 @@ export interface Proposal {
securityRisks: SecurityRisk[];
filesChanged: FileChange[];
}
export interface ProposalResult {
proposal: Proposal;
messageId: number;
}