diff --git a/apps/www/src/client/App.tsx b/apps/www/src/client/App.tsx index 0e34a6b..99e0672 100644 --- a/apps/www/src/client/App.tsx +++ b/apps/www/src/client/App.tsx @@ -315,14 +315,18 @@ function About({ slides, error }: { slides: Slide[] | null; error: string }) { View the source -
- - {state === 'online' - ? 'Server online' - : state === 'down' - ? 'Server unreachable' - : 'Checking the server'} -
++ + {state === 'online' + ? 'Server online' + : state === 'down' + ? 'Server unreachable' + : 'Checking the server'} +
+ {/* Only when it's actually up: when it isn't, people want the status, not the joke. */} + {state === 'online' &&The cloud never goes down, right?
} +