File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export type MuxFrontendMetadata =
2929 | {
3030 type : "script-execution" ;
3131 id : string ;
32- historySequence : number ;
32+ historySequence ? : number ;
3333 timestamp : number ;
3434 command : string ;
3535 scriptName : string ;
@@ -192,7 +192,7 @@ export type DisplayedMessage =
192192 | {
193193 type : "script-execution" ;
194194 id : string ;
195- historySequence : number ;
195+ historySequence ? : number ;
196196 timestamp : number ;
197197 command : string ;
198198 scriptName : string ;
Original file line number Diff line number Diff line change @@ -1251,7 +1251,7 @@ export class IpcMain {
12511251 muxMetadata : {
12521252 type : "script-execution" ,
12531253 id : `script-${ Date . now ( ) } ` , // Can match message ID
1254- historySequence : 0 , // Will be assigned by appendToHistory
1254+ // historySequence: 0, // Will be assigned by appendToHistory
12551255 timestamp : Date . now ( ) ,
12561256 command : command ,
12571257 scriptName : scriptName ,
You can’t perform that action at this time.
0 commit comments