@@ -144,9 +136,7 @@ export default function Sidebar() {
| Moon |
- {tonight?.moon_illumination != null
- ? `${Math.round(tonight.moon_illumination * 100)}%`
- : '—'}
+ {tonight?.moon_illumination != null ? `${Math.round(tonight.moon_illumination * 100)}%` : '—'}
{tonight?.moon_illumination != null && (
@@ -158,18 +148,8 @@ export default function Sidebar() {
{/* Conditions widget */}
-
-
+
+
Conditions
@@ -186,12 +166,8 @@ export default function Sidebar() {
| {label} |
{value as string} |
))}
diff --git a/frontend/src/components/targets/CompareModal.tsx b/frontend/src/components/targets/CompareModal.tsx
index af54b5a..266e6f1 100644
--- a/frontend/src/components/targets/CompareModal.tsx
+++ b/frontend/src/components/targets/CompareModal.tsx
@@ -230,7 +230,7 @@ export default function CompareModal({ targets, onClose }: Props) {
>
{/* Header */}
@@ -250,11 +250,11 @@ export default function CompareModal({ targets, onClose }: Props) {
{/* Body */}
-
-
+
+
-
diff --git a/frontend/src/pages/Calendar.tsx b/frontend/src/pages/Calendar.tsx
index 5447e29..3b240f4 100644
--- a/frontend/src/pages/Calendar.tsx
+++ b/frontend/src/pages/Calendar.tsx
@@ -214,7 +214,7 @@ export default function Calendar() {
const months = [today, new Date(today.getFullYear(), today.getMonth() + 1), new Date(today.getFullYear(), today.getMonth() + 2)];
return (
-
+
Calendar
) : (
-
+
{months.map(month => {
const monthStart = startOfMonth(month);
@@ -246,11 +246,11 @@ export default function Calendar() {
const firstDow = monthStart.getDay();
return (
-
+
{format(month, 'MMMM yyyy')}
-
+
{['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'].map(d => (
{d}
diff --git a/frontend/src/pages/Dashboard.tsx b/frontend/src/pages/Dashboard.tsx
index a13c2e3..140f8ed 100644
--- a/frontend/src/pages/Dashboard.tsx
+++ b/frontend/src/pages/Dashboard.tsx
@@ -314,7 +314,7 @@ function RunOrderCard({ items, dusk, dawn }: {
);
return (
-
+
{/* Slew optimizer toggle */}
|