Fix WebSocket authentication and duplicate filters
Some checks failed
CI/CD Pipeline / Lint and Test (push) Has been cancelled
CI/CD Pipeline / E2E Tests (push) Has been cancelled
CI/CD Pipeline / Build Application (push) Has been cancelled

- Remove mock authentication from authSlice to enable real user login
- Fix WebSocket connection errors by using real JWT tokens
- Consolidate duplicate filters on insights page into single shared filter
- Update InsightsDashboard to accept props instead of managing own state
- Add MUI Grid styling for 20% min-width and centering
- Improve UX with unified filter controls for both insights and predictions
This commit is contained in:
2025-10-05 18:13:27 +00:00
parent d0b78181a3
commit 010c30637b
4 changed files with 53 additions and 120 deletions

View File

@@ -165,3 +165,23 @@ body {
outline: 2px solid #FF8B7D;
outline-offset: 2px;
}
/* ============================================
MUI Grid Custom Styling
============================================ */
/* MUI Grid minimum width and centering */
.mui-17fpwt7-MuiGrid-root {
min-width: 20% !important;
}
/* Center MUI Grid containers and items */
.MuiGrid-container {
justify-content: center !important;
}
.MuiGrid-item {
display: flex !important;
justify-content: center !important;
align-items: center !important;
}