diff --git a/src/components/ProgressBar.tsx b/src/components/ProgressBar.tsx
index e68525a8054c473eb140f883236c7570c03d95fb..61e8c945b7b1085276eabc4eb25e603aa12a94bc 100644
--- a/src/components/ProgressBar.tsx
+++ b/src/components/ProgressBar.tsx
@@ -1,9 +1,9 @@
 import { Progress } from "@nextui-org/react";
 
 type ProgressBarProps = {
-  value?: number | null;
+  value?: number;
 };
-const ProgressBar = ({ value = null }: ProgressBarProps) => {
+const ProgressBar = ({ value }: ProgressBarProps) => {
   return (
     <Progress
       isIndeterminate={!value}