From 079265f5ca71079a15bb44adbddec01569da49f4 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 25 Dec 2024 08:54:33 +0200 Subject: [PATCH] fix(client/ts): type error regarding note rows --- src/public/app/services/load_results.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/public/app/services/load_results.ts b/src/public/app/services/load_results.ts index 86ee7d4c8..9d4eb9b30 100644 --- a/src/public/app/services/load_results.ts +++ b/src/public/app/services/load_results.ts @@ -1,7 +1,12 @@ -import { NoteRow } from "../../../becca/entities/rows.js"; import { AttributeType } from "../entities/fattribute.js"; import { EntityChange } from "../server_types.js"; +// TODO: Deduplicate with server. + +interface NoteRow { + isDeleted?: boolean; +} + interface BranchRow { branchId: string; componentId: string;