ux: reword client-error flash to 'Unable to reach the server'

The default 'We can't find the internet' wording blames the user's
connection, but the typical cause on this site is a server-side issue
(deploy in progress, pod OOM, ingress hiccup). Server-specific wording
matches reality and points users at the right thing to wait on.
This commit is contained in:
Graham McIntire 2026-05-03 16:04:23 -05:00
parent f7eb888123
commit 833897e2f5
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59

View file

@ -130,7 +130,7 @@ defmodule MicrowavepropWeb.Layouts do
<.flash kind={:info} flash={@flash} />
<.flash kind={:error} flash={@flash} />
<.flash id="client-error" kind={:error} title="We can't find the internet" hidden>
<.flash id="client-error" kind={:error} title="Unable to reach the server" hidden>
Attempting to reconnect
<.icon name="hero-arrow-path" class="ml-1 size-3 motion-safe:animate-spin" />
</.flash>