From fd5aef1dade7005653e5ec16e7e92e56d2c0e658 Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Sun, 9 Apr 2023 21:54:54 +0200 Subject: [PATCH] chore(core): remove unnecessary async Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> --- packages/core/src/store/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/store/actions.ts b/packages/core/src/store/actions.ts index 98c7ad86..29be14a2 100644 --- a/packages/core/src/store/actions.ts +++ b/packages/core/src/store/actions.ts @@ -327,7 +327,7 @@ export function useActions( state.translateExtent = translateExtent } - const setNodeExtent: Actions['setNodeExtent'] = async (nodeExtent) => { + const setNodeExtent: Actions['setNodeExtent'] = (nodeExtent) => { state.nodeExtent = nodeExtent updateNodeInternals(nodeIds.value)