From 54abaeb587d410749ca98bcb28787aece2cc3f0b Mon Sep 17 00:00:00 2001 From: Riley Davis Date: Wed, 17 May 2017 15:47:41 -0600 Subject: [PATCH] wrap the not-authorized warning in a template --- client/coral-admin/src/containers/LayoutContainer.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/coral-admin/src/containers/LayoutContainer.js b/client/coral-admin/src/containers/LayoutContainer.js index ce2761ce8..adeb8a346 100644 --- a/client/coral-admin/src/containers/LayoutContainer.js +++ b/client/coral-admin/src/containers/LayoutContainer.js @@ -55,7 +55,11 @@ class LayoutContainer extends Component { /> ); } else if (loggedIn) { - return

This page is for team use only. Please contact an administrator if you want to join this team.

; + return ( + +

This page is for team use only. Please contact an administrator if you want to join this team.

; +
+ ); } return ; }