Override type in safe place

This commit is contained in:
Eric Bailey
2024-05-13 18:21:35 -05:00
parent fe855c24f6
commit aadf10cf18
+5 -1
View File
@@ -942,7 +942,11 @@ export class Convo {
id: nanoid(),
rev: '__fake__',
sentAt: new Date().toISOString(),
sender: this.sender,
/*
* `getItems` is only run in "active" status states, where
* `this.sender` is defined
*/
sender: this.sender!,
},
nextMessage: null,
})