From 42a16e001560526fc294783131233a05b54f047d Mon Sep 17 00:00:00 2001 From: Manuel Ruwe Date: Fri, 30 Dec 2022 16:58:05 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20Fix=20build=20errors?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Dashboard/Tiles/Apps/AppTile.tsx | 2 +- src/types/app.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Dashboard/Tiles/Apps/AppTile.tsx b/src/components/Dashboard/Tiles/Apps/AppTile.tsx index 46e4f3bb4..ea0b6935b 100644 --- a/src/components/Dashboard/Tiles/Apps/AppTile.tsx +++ b/src/components/Dashboard/Tiles/Apps/AppTile.tsx @@ -49,7 +49,7 @@ export const AppTile = ({ className, app }: AppTileProps) => { 0 ? app.behaviour.externalUrl : app.url} target={app.behaviour.isOpeningNewTab ? '_blank' : '_self'} className={cx(classes.button, classes.link)} > diff --git a/src/types/app.ts b/src/types/app.ts index 860983c25..4e3d193b1 100644 --- a/src/types/app.ts +++ b/src/types/app.ts @@ -16,7 +16,7 @@ export type ConfigAppType = Omit & { }; interface AppBehaviourType { - externalUrl?: string; + externalUrl: string; isOpeningNewTab: boolean; }