style: fix import order in ExtensionStoreView

Move useShallow and lucide-react imports above @renderer/* imports
to follow the project import order convention.
This commit is contained in:
Artem Rootman 2026-04-05 17:36:03 +00:00
parent f07eb914ae
commit a92390dcc6
No known key found for this signature in database
GPG key ID: B7C30676209A822C

View file

@ -5,6 +5,8 @@
*/
import { useCallback, useEffect, useMemo, useState } from 'react';
import { useShallow } from 'zustand/react/shallow';
import { AlertTriangle, BookOpen, Info, Key, Plus, Puzzle, RefreshCw, Server } from 'lucide-react';
import { api } from '@renderer/api';
import { Button } from '@renderer/components/ui/button';
@ -18,8 +20,6 @@ import {
import { useTabIdOptional } from '@renderer/contexts/useTabUIContext';
import { useExtensionsTabState } from '@renderer/hooks/useExtensionsTabState';
import { useStore } from '@renderer/store';
import { useShallow } from 'zustand/react/shallow';
import { AlertTriangle, BookOpen, Info, Key, Plus, Puzzle, RefreshCw, Server } from 'lucide-react';
import { ApiKeysPanel } from './apikeys/ApiKeysPanel';
import { CustomMcpServerDialog } from './mcp/CustomMcpServerDialog';