diff --git a/components/ui/Button.tsx b/components/ui/Button.tsx
index 80777b0964..647d633cb0 100644
--- a/components/ui/Button.tsx
+++ b/components/ui/Button.tsx
@@ -1,17 +1,16 @@
import { useState } from 'react';
export default function Button(props) {
- const [loading, setLoading] = useState(false);
-
- return(
-
- );
+ const [loading, setLoading] = useState(false);
+ return(
+
+ );
}
\ No newline at end of file