diff --git a/frontend/App.tsx b/frontend/App.tsx index 0edf473..eb70143 100755 --- a/frontend/App.tsx +++ b/frontend/App.tsx @@ -49,9 +49,9 @@ const App: React.FC = () => { // Show loading spinner during MSAL authentication interactions if (inProgress !== InteractionStatus.None) { return ( -
+
- + @@ -932,7 +932,8 @@ const AppContent: React.FC<{ msalInstance: any }> = ({ msalInstance }) => { return ( <> handleNavigate('Campaigns')} /> - + {/* Hidden per Oliver design — client may want it back */} + {/* */} ); } @@ -941,9 +942,9 @@ const AppContent: React.FC<{ msalInstance: any }> = ({ msalInstance }) => { // Show loading spinner while user profile is loading if (isUserLoading) { return ( -
+
- + @@ -954,7 +955,7 @@ const AppContent: React.FC<{ msalInstance: any }> = ({ msalInstance }) => { } // Determine background color based on view to avoid grey bar on Home view - const mainBgColor = currentView === 'Home' ? 'bg-white' : 'bg-grey-100'; + const mainBgColor = currentView === 'Home' ? 'bg-white' : 'bg-oliver-grey'; // Get user info from MSAL for sidebar display const userInfo = getUserInfo(msalInstance); @@ -982,15 +983,15 @@ const AppContent: React.FC<{ msalInstance: any }> = ({ msalInstance }) => { {/* Model fallback notification toast */} {notification && ( -
- +
+
-

AI Model Notice

-

{notification}

+

AI Model Notice

+

{notification}

-