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:
parent
52820b508f
commit
3c03aff295
2 changed files with 2 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import React, { useState, useEffect } from 'react';
|
import React, { useEffect } from 'react';
|
||||||
import { X, Download, FileText } from 'lucide-react';
|
import { X, Download, FileText } from 'lucide-react';
|
||||||
|
|
||||||
interface PDFViewerProps {
|
interface PDFViewerProps {
|
||||||
|
|
|
||||||
1
frontend/tsconfig.tsbuildinfo
Normal file
1
frontend/tsconfig.tsbuildinfo
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue