fix: build error
This commit is contained in:
parent
c3213bc3fc
commit
9b43886a80
|
|
@ -9,7 +9,6 @@ import { convertFileSrc } from '@tauri-apps/api/core';
|
||||||
*/
|
*/
|
||||||
export const ImageUploader: React.FC<ImageUploaderProps> = ({
|
export const ImageUploader: React.FC<ImageUploaderProps> = ({
|
||||||
onImageSelect,
|
onImageSelect,
|
||||||
onAnalysisComplete,
|
|
||||||
onAnalyzeImage,
|
onAnalyzeImage,
|
||||||
isAnalyzing,
|
isAnalyzing,
|
||||||
selectedImage,
|
selectedImage,
|
||||||
|
|
|
||||||
|
|
@ -11,9 +11,7 @@ import {
|
||||||
Search,
|
Search,
|
||||||
Filter,
|
Filter,
|
||||||
BarChart3,
|
BarChart3,
|
||||||
ArrowLeft
|
|
||||||
} from 'lucide-react';
|
} from 'lucide-react';
|
||||||
import { useNavigate } from 'react-router-dom';
|
|
||||||
import { Material } from '../types/material';
|
import { Material } from '../types/material';
|
||||||
import { Model } from '../types/model';
|
import { Model } from '../types/model';
|
||||||
import { MaterialCard } from '../components/MaterialCard';
|
import { MaterialCard } from '../components/MaterialCard';
|
||||||
|
|
@ -31,7 +29,6 @@ import { useProjectStore } from '../store/projectStore';
|
||||||
|
|
||||||
|
|
||||||
export const MaterialModelBinding: React.FC = () => {
|
export const MaterialModelBinding: React.FC = () => {
|
||||||
const navigate = useNavigate();
|
|
||||||
const { success, error } = useNotifications();
|
const { success, error } = useNotifications();
|
||||||
const { projects, loadProjects } = useProjectStore();
|
const { projects, loadProjects } = useProjectStore();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,6 @@ import { useOutfitSearchStore, useOutfitSearchActions, useOutfitSearchSelectors
|
||||||
import { OutfitSearchPanel } from '../components/outfit/OutfitSearchPanel';
|
import { OutfitSearchPanel } from '../components/outfit/OutfitSearchPanel';
|
||||||
import { SearchResults } from '../components/outfit/SearchResults';
|
import { SearchResults } from '../components/outfit/SearchResults';
|
||||||
|
|
||||||
import { LLMChat } from '../components/outfit/LLMChat';
|
|
||||||
import { AnalysisResultsPanel } from '../components/outfit/AnalysisResultsPanel';
|
|
||||||
import { SearchRequest } from '../types/outfitSearch';
|
import { SearchRequest } from '../types/outfitSearch';
|
||||||
import { Search, Image, MessageCircle, RotateCcw, Sparkles } from 'lucide-react';
|
import { Search, Image, MessageCircle, RotateCcw, Sparkles } from 'lucide-react';
|
||||||
|
|
||||||
|
|
@ -21,7 +19,6 @@ export const OutfitMatch: React.FC = () => {
|
||||||
searchResults,
|
searchResults,
|
||||||
updateSearchConfig,
|
updateSearchConfig,
|
||||||
executeSearch,
|
executeSearch,
|
||||||
askLLM,
|
|
||||||
setSelectedImage,
|
setSelectedImage,
|
||||||
clearErrors,
|
clearErrors,
|
||||||
analyzeImage,
|
analyzeImage,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue