Fix TypeScript error: Remove unused useState import from PDFViewer component

- Removed unused useState import that was causing build failures
- Fixed Docker deployment issue where pnpm build was failing with exit code 1
- All TypeScript checks now pass successfully
This commit is contained in:
TheMaddax 2025-06-25 21:36:56 -05:00
parent 52820b508f
commit 3c03aff295
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,6 @@
'use client';
import React, { useState, useEffect } from 'react';
import React, { useEffect } from 'react';
import { X, Download, FileText } from 'lucide-react';
interface PDFViewerProps {

File diff suppressed because one or more lines are too long