From 0167a6d766a3e46cc7a9fe39cc73c4b0cddc0c7d Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Sun, 18 Dec 2022 21:15:30 +0100 Subject: [PATCH] chore(core): remove any typecast Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> --- packages/core/src/utils/graph.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/utils/graph.ts b/packages/core/src/utils/graph.ts index c2a12731..2680b842 100644 --- a/packages/core/src/utils/graph.ts +++ b/packages/core/src/utils/graph.ts @@ -369,6 +369,6 @@ export const getMarkerId = (marker: EdgeMarkerType | undefined, vueFlowId?: stri return `${idPrefix}${Object.keys(marker) .sort() - .map((key: string) => `${key}=${(marker as any)[key]}`) + .map((key: string) => `${key}=${marker[key]}`) .join('&')}` }