Fix(ish) multiwindow updates

This commit is contained in:
Gregory Schier
2023-03-29 11:15:37 -07:00
parent 3548945202
commit ab15782019
4 changed files with 59 additions and 35 deletions

View File

@@ -2,7 +2,7 @@ export interface BaseModel {
readonly id: string;
readonly createdAt: string;
readonly updatedAt: string;
readonly updatedBy: string;
updatedBy: string;
}
export interface Workspace extends BaseModel {