From f81d799ff9c572a89be3e574a97d0ed5fa76fdb9 Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Sat, 13 Sep 2025 02:27:44 -0500 Subject: [PATCH] Adding authentication, media, and messaging. --- src/App.js | 2 ++ src/app/views/Dashboard/Dashboard.jsx | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 934ef97..5f3e664 100755 --- a/src/App.js +++ b/src/App.js @@ -3,6 +3,7 @@ import AppRoutes from './app/routes'; import React from 'react'; import { SnackbarProvider } from 'notistack'; import { CssBaseline, ThemeProvider, createTheme } from '@mui/material'; +import AppHeader from './app/components/AppHeader'; const theme = createTheme({ palette: { @@ -16,6 +17,7 @@ const App = () => { + diff --git a/src/app/views/Dashboard/Dashboard.jsx b/src/app/views/Dashboard/Dashboard.jsx index 66ad834..e8aa6f1 100755 --- a/src/app/views/Dashboard/Dashboard.jsx +++ b/src/app/views/Dashboard/Dashboard.jsx @@ -22,7 +22,6 @@ const Dashboard = () => { return (
- Welcome to PHS Admin{user ? `, ${user.first_name || 'User ' + user.id}` : ''} -- 2.43.0