diff --git a/.gitea/workflows/staging.yaml b/.gitea/workflows/staging.yaml index 0630bfb..fec55b3 100644 --- a/.gitea/workflows/staging.yaml +++ b/.gitea/workflows/staging.yaml @@ -3,7 +3,7 @@ # After verification, sends notification with link to trigger production deploy name: Deploy to Staging -run-name: Staging Deploy - ${{ gitea.sha }} +run-name: "Staging - ${{ gitea.event.pull_request.title || gitea.ref_name }}" on: push: diff --git a/frontend/src/features/dashboard/components/SummaryCards.tsx b/frontend/src/features/dashboard/components/SummaryCards.tsx index 47bcc76..eaf6ec8 100644 --- a/frontend/src/features/dashboard/components/SummaryCards.tsx +++ b/frontend/src/features/dashboard/components/SummaryCards.tsx @@ -27,14 +27,14 @@ export const SummaryCards: React.FC = ({ summary }) => { value: summary.upcomingMaintenanceCount, subtitle: 'Next 30 days', icon: BuildRoundedIcon, - color: 'warning.main', + color: 'primary.main', }, { title: 'Recent Fuel Logs', value: summary.recentFuelLogsCount, subtitle: 'Last 7 days', icon: LocalGasStationRoundedIcon, - color: 'success.main', + color: 'primary.main', }, ];