diff --git a/@packages/@ui/locale-pipeline-admin/src/components/LocaleFileSelector.tsx b/@packages/@ui/locale-pipeline-admin/src/components/LocaleFileSelector.tsx index 4902bfa3d..353d5b118 100644 --- a/@packages/@ui/locale-pipeline-admin/src/components/LocaleFileSelector.tsx +++ b/@packages/@ui/locale-pipeline-admin/src/components/LocaleFileSelector.tsx @@ -4,9 +4,9 @@ * Multi-select file browser for locale files with cache status indicators. */ +import styled from '@lilith/ui-styled-components'; import { Check, X, RefreshCw, HelpCircle, Filter } from 'lucide-react'; import { useState, useMemo, useCallback } from 'react'; -import styled from '@lilith/ui-styled-components'; import { useLocaleFiles } from '../hooks/useLocaleFiles.js'; diff --git a/@packages/@ui/locale-pipeline-admin/src/components/LocalePathSelector.tsx b/@packages/@ui/locale-pipeline-admin/src/components/LocalePathSelector.tsx index 3cc33243c..434f8459e 100644 --- a/@packages/@ui/locale-pipeline-admin/src/components/LocalePathSelector.tsx +++ b/@packages/@ui/locale-pipeline-admin/src/components/LocalePathSelector.tsx @@ -5,9 +5,9 @@ * Supports both file-level (namespace.json) and path-level (namespace.json:path.to.key) selection. */ +import styled from '@lilith/ui-styled-components'; import { Check, X, RefreshCw, HelpCircle, Filter, ChevronRight, ChevronDown } from 'lucide-react'; import { useState, useMemo, useCallback } from 'react'; -import styled from '@lilith/ui-styled-components'; import { useLocaleFiles } from '../hooks/useLocaleFiles.js'; import { useLocaleKeys } from '../hooks/useLocaleKeys.js'; diff --git a/@packages/@ui/locale-pipeline-admin/src/components/PipelineProgress.tsx b/@packages/@ui/locale-pipeline-admin/src/components/PipelineProgress.tsx index 6612e41ef..ffadbb78c 100644 --- a/@packages/@ui/locale-pipeline-admin/src/components/PipelineProgress.tsx +++ b/@packages/@ui/locale-pipeline-admin/src/components/PipelineProgress.tsx @@ -4,8 +4,8 @@ * Displays progress of a running pipeline job. */ -import { Check, X, SkipForward, Loader2 } from 'lucide-react'; import styled from '@lilith/ui-styled-components'; +import { Check, X, SkipForward, Loader2 } from 'lucide-react'; import type { JobProgress, FileResultStatus } from '../types.js'; diff --git a/@packages/@ui/locale-pipeline-admin/src/components/PipelineRunner.tsx b/@packages/@ui/locale-pipeline-admin/src/components/PipelineRunner.tsx index 310cf2256..f9b3abf23 100644 --- a/@packages/@ui/locale-pipeline-admin/src/components/PipelineRunner.tsx +++ b/@packages/@ui/locale-pipeline-admin/src/components/PipelineRunner.tsx @@ -4,9 +4,9 @@ * Combined locale file selector + pipeline execution UI. */ +import styled from '@lilith/ui-styled-components'; import { Play, Square, RefreshCw } from 'lucide-react'; import { useState, useCallback } from 'react'; -import styled from '@lilith/ui-styled-components'; import { useLocaleSources } from '../hooks/useLocaleSources.js'; import { usePipelineRunner } from '../hooks/usePipelineRunner.js';