From 72f9d435fbfe85278e8109b851b9fd89ddbbc4a1 Mon Sep 17 00:00:00 2001 From: Jannis Mattheis Date: Fri, 20 Apr 2018 17:05:41 +0200 Subject: [PATCH] Remove no apps message --- ui/src/component/Navigation.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ui/src/component/Navigation.tsx b/ui/src/component/Navigation.tsx index f471204..daee908 100644 --- a/ui/src/component/Navigation.tsx +++ b/ui/src/component/Navigation.tsx @@ -45,11 +45,7 @@ class Navigation extends Component { const {classes, loggedIn} = this.props; const {apps} = this.state; - const empty = ( - - ); - - const userApps = apps.length === 0 ? empty : apps.map((app) => { + const userApps = apps.length === 0 ? null : apps.map((app) => { return (