fix: fix wizard other camera i18n

This commit is contained in:
ZhaiSoul 2026-01-08 23:44:45 +08:00
parent d825e9719d
commit 9569009a0f

View File

@ -417,7 +417,9 @@ export default function Step1NameCamera({
<SelectContent> <SelectContent>
{CAMERA_BRANDS.map((brand) => ( {CAMERA_BRANDS.map((brand) => (
<SelectItem key={brand.value} value={brand.value}> <SelectItem key={brand.value} value={brand.value}>
{brand.label} {brand.label.toLowerCase() === "other"
? t("label.other", { ns: "common" })
: brand.label}
</SelectItem> </SelectItem>
))} ))}
</SelectContent> </SelectContent>