diff --git a/frontend/src/pages/LTTPage.tsx b/frontend/src/pages/LTTPage.tsx index 1b4ad32..86d26d9 100644 --- a/frontend/src/pages/LTTPage.tsx +++ b/frontend/src/pages/LTTPage.tsx @@ -1,10 +1,9 @@ import React from 'react' import { Film } from 'lucide-react' -import { useQueryDocument, useIngestDocument } from '../lib/queries' +import { useQueryDocument } from '../lib/queries' import { QueryInput } from '../components/QueryInput' import { KeywordsDisplay } from '../components/KeywordsDisplay' import { ResponsePanel } from '../components/ResponsePanel' -import { IngestPanel } from '../components/IngestPanel' const VideoPlaceholder: React.FC = () => { return ( @@ -19,16 +18,11 @@ const VideoPlaceholder: React.FC = () => { export const LTTPage: React.FC = () => { const queryMutation = useQueryDocument() - const ingestMutation = useIngestDocument() const handleQuerySubmit = (question: string): void => { queryMutation.mutate({ question }) } - const handleFileUpload = (file: File): void => { - ingestMutation.mutate(file) - } - return (