From 59ec3924d2b0703eef1c2e7b35f38e17c4d892ae Mon Sep 17 00:00:00 2001 From: Aaron Aronchick Date: Thu, 5 Mar 2026 01:01:56 +0000 Subject: [PATCH] fix: sort imports in i18n registry test to pass oxfmt --- src/i18n/registry.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/registry.test.ts b/src/i18n/registry.test.ts index a2fa23a0d0b..c59ae03fa9a 100644 --- a/src/i18n/registry.test.ts +++ b/src/i18n/registry.test.ts @@ -1,11 +1,11 @@ import { describe, expect, it } from "vitest"; -import type { TranslationMap } from "../../ui/src/i18n/lib/types.ts"; import { DEFAULT_LOCALE, SUPPORTED_LOCALES, loadLazyLocaleTranslation, resolveNavigatorLocale, } from "../../ui/src/i18n/lib/registry.ts"; +import type { TranslationMap } from "../../ui/src/i18n/lib/types.ts"; function getNestedTranslation(map: TranslationMap | null, ...path: string[]): string | undefined { let value: string | TranslationMap | undefined = map ?? undefined;