This commit is contained in:
Reece Browne 2025-09-19 11:38:53 +01:00
parent 1174b6a4da
commit 0e1da982b6
3 changed files with 10 additions and 12 deletions

View File

@ -33,7 +33,6 @@ import { RotateAPIBridge } from './RotateAPIBridge';
interface LocalEmbedPDFProps { interface LocalEmbedPDFProps {
file?: File | Blob; file?: File | Blob;
url?: string | null; url?: string | null;
colorScheme?: 'light' | 'dark' | 'auto'; // Optional since we use CSS variables
} }
export function LocalEmbedPDF({ file, url }: LocalEmbedPDFProps) { export function LocalEmbedPDF({ file, url }: LocalEmbedPDFProps) {

View File

@ -5,7 +5,6 @@ import { useViewer } from '../../contexts/ViewerContext';
interface ThumbnailSidebarProps { interface ThumbnailSidebarProps {
visible: boolean; visible: boolean;
onToggle: () => void; onToggle: () => void;
colorScheme?: 'light' | 'dark' | 'auto'; // Optional since we use CSS variables
} }
export function ThumbnailSidebar({ visible, onToggle: _onToggle }: ThumbnailSidebarProps) { export function ThumbnailSidebar({ visible, onToggle: _onToggle }: ThumbnailSidebarProps) {

View File

@ -12,5 +12,5 @@ export default defineConfig({
}, },
}, },
}, },
base: "http://localhost:8080", base: "./",
}); });