Implemented all css in single

This commit is contained in:
sumona-banerjeee
2026-02-12 10:43:21 +05:30
parent 12b6a99531
commit 53cc7f6a4f
13 changed files with 343 additions and 343 deletions

View File

@@ -55,7 +55,7 @@ export default function ResultsPage() {
}
const data = await response.json()
setDetectionData(data)
setDetectionData(data as any)
// Retrieve video file from IndexedDB
const storedVideoFile = await getVideoFile(videoData.videoId)
@@ -90,9 +90,9 @@ export default function ResultsPage() {
}
const getTitle = () => {
return detectionType === "pothole-detection"
? "Pothole Detection Results"
: "Signboard Detection Results"
if (detectionType === "pothole-detection") return "Pothole Detection Results"
if (detectionType === "sign-board-detection") return "Signboard Detection Results"
return "Pothole & Signboard Detection Results"
}
if (isLoading) {