From c12fa5c178d7df55e54676a739995d48ffe9b911 Mon Sep 17 00:00:00 2001 From: peterkogo Date: Tue, 21 Jan 2025 15:45:35 +0100 Subject: [PATCH] Allow handle id to be null --- packages/system/src/types/handles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/system/src/types/handles.ts b/packages/system/src/types/handles.ts index f9828dd5..9cf2a1dd 100644 --- a/packages/system/src/types/handles.ts +++ b/packages/system/src/types/handles.ts @@ -36,5 +36,5 @@ export type HandleProps = { /** Id of the handle * @remarks optional if there is only one handle of this type */ - id?: string; + id?: string | null; };