diff --git a/frontend/src/components/useSocket.ts b/frontend/src/components/useSocket.ts index 4c4aaed..bcc2a92 100644 --- a/frontend/src/components/useSocket.ts +++ b/frontend/src/components/useSocket.ts @@ -15,7 +15,7 @@ interface Executable { interface UseSocketResult { id: number | null; - executables: Executable[]; + executables: Executable[] | null; downloads: Download[] | null; deleteDownload: (id: string) => void; }