diff --git a/src/hooks/useAcceptedTerms.tsx b/src/hooks/useAcceptedTerms.tsx index c77c0067..8bf2bf77 100644 --- a/src/hooks/useAcceptedTerms.tsx +++ b/src/hooks/useAcceptedTerms.tsx @@ -3,30 +3,24 @@ import Link from "next/link"; import Checkbox from "@/components/Low/Checkbox"; const useAcceptedTerms = () => { - const [acceptedTerms, setAcceptedTerms] = React.useState(false); + const [acceptedTerms, setAcceptedTerms] = React.useState(false); - const renderCheckbox = () => ( - - I agree to the - - {" "} - Terms and Conditions - {" "} - and - - {" "} - Privacy Policy - - - ); + const renderCheckbox = () => ( + + I agree to the + + {" "} + Terms and Conditions + {" "} + and + + {" "} + Privacy Policy + + + ); - return { acceptedTerms, renderCheckbox }; + return {acceptedTerms, renderCheckbox}; }; -export default useAcceptedTerms; \ No newline at end of file +export default useAcceptedTerms;