From a3fedd3810ac7c122db20b26f6b09748a93cfe00 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Wed, 8 Jun 2022 15:56:48 -0400 Subject: [PATCH] Fix type error Signed-off-by: Sebastian Malton --- src/common/front-end-routing/front-end-route-injection-token.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/front-end-routing/front-end-route-injection-token.ts b/src/common/front-end-routing/front-end-route-injection-token.ts index cf1f9ed87e..fbb89b5962 100644 --- a/src/common/front-end-routing/front-end-route-injection-token.ts +++ b/src/common/front-end-routing/front-end-route-injection-token.ts @@ -6,7 +6,7 @@ import { getInjectionToken } from "@ogre-tools/injectable"; import type { IComputedValue } from "mobx"; import type { LensRendererExtension } from "../../extensions/lens-renderer-extension"; -export const frontEndRouteInjectionToken = getInjectionToken>({ +export const frontEndRouteInjectionToken = getInjectionToken>({ id: "front-end-route-injection-token", });