Hide computing route text on mobile to prevent layout reflow
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
650fa0f36a
commit
7c0a45abe5
1 changed files with 1 additions and 1 deletions
|
|
@ -262,7 +262,7 @@ export function SessionView({ sessionId, callbackUrl, callbackToken, returnUrl,
|
||||||
)}
|
)}
|
||||||
<ExportButton yjs={yjs} />
|
<ExportButton yjs={yjs} />
|
||||||
{computing && (
|
{computing && (
|
||||||
<span className="text-xs text-blue-600">{t("computingRoute")}</span>
|
<span className="hidden text-xs text-blue-600 sm:inline">{t("computingRoute")}</span>
|
||||||
)}
|
)}
|
||||||
<span className="hidden text-sm text-gray-500 sm:inline">
|
<span className="hidden text-sm text-gray-500 sm:inline">
|
||||||
{yjs.connected ? t("connected") : t("connecting")} · {sessionId.slice(0, 8)}
|
{yjs.connected ? t("connected") : t("connecting")} · {sessionId.slice(0, 8)}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue