style(i18n): fix lint — formatting and import ordering across 21 files
All checks were successful
CI / ci (push) Successful in 1m21s
CI / e2e (push) Has been skipped
CI / deploy (push) Successful in 1m15s

Biome auto-fix for formatting (line length, ternary wrapping) and
import organization in files touched by phase 34 i18n work.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-18 14:49:10 +02:00
parent 1b2ddcd0bd
commit bea386e7db
23 changed files with 2192 additions and 64 deletions

View File

@@ -79,7 +79,9 @@ export function CreateThreadModal() {
onClick={(e) => e.stopPropagation()}
onKeyDown={() => {}}
>
<h2 className="text-lg font-semibold text-gray-900 mb-4">{t("create.title")}</h2>
<h2 className="text-lg font-semibold text-gray-900 mb-4">
{t("create.title")}
</h2>
<form onSubmit={handleSubmit} className="space-y-4">
<div>
@@ -135,7 +137,9 @@ export function CreateThreadModal() {
disabled={createThread.isPending}
className="px-4 py-2 text-sm font-medium text-white bg-gray-700 hover:bg-gray-800 disabled:opacity-50 rounded-lg transition-colors"
>
{createThread.isPending ? t("common:actions.creating") : t("create.createThread")}
{createThread.isPending
? t("common:actions.creating")
: t("create.createThread")}
</button>
</div>
</form>