Skip to content

Commit

Permalink
set underconstruction to false
Browse files Browse the repository at this point in the history
  • Loading branch information
hanshack committed Oct 8, 2024
1 parent 5ed087e commit 8f09945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const MapSite: NextPage = (mapData: any) => {
const [marketsData, setMarketsData] = useState<any>(mapData.markets)

// if the intro modal should show a under construction text
const [underConstruction, setUnderConstruction] = useState<boolean>(true)
const [underConstruction, setUnderConstruction] = useState<boolean>(false)

// when the query string is read check if we have an id
useEffect(() => {
Expand Down

0 comments on commit 8f09945

Please sign in to comment.