Skip to content

Commit

Permalink
changed modal state to false
Browse files Browse the repository at this point in the history
  • Loading branch information
Obiaderi committed Oct 8, 2024
1 parent 0362be6 commit 3acb145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import HeroSection from "./components/shared/HeroSection";
function App() {
const baseURL = import.meta.env.VITE_API_URL;

const [openModal, setOpenModal] = useState(true);
const [openModal, setOpenModal] = useState(false);
const [loading, setLoading] = useState(false);
const [updatingWaitList, setUpdatingWaitList] = useState(false);
const [version, setVersion] = useState(0);
Expand Down

0 comments on commit 3acb145

Please sign in to comment.