1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix type error

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-06-08 15:56:48 -04:00
parent a98b3e5705
commit a3fedd3810

View File

@ -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<Route<unknown>>({
export const frontEndRouteInjectionToken = getInjectionToken<Route<object>>({
id: "front-end-route-injection-token",
});