Skip to content

Commit

Permalink
close season
Browse files Browse the repository at this point in the history
  • Loading branch information
notV4l committed Oct 30, 2023
1 parent fc0a970 commit ce2282e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions web/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const Header = ({ back }: HeaderProps) => {
</>
)}

{(!isMobile || (!account && isMobile)) && (
{/* {(!isMobile || (!account && isMobile)) && (
<Button
h="48px"
sx={headerButtonStyles}
Expand All @@ -125,7 +125,7 @@ const Header = ({ back }: HeaderProps) => {
? formatAddress(account.address.toUpperCase())
: "Create Burner"}
</Button>
)}
)} */}
{isMobile && <MobileMenu />}
</HStack>
</HStack>
Expand Down
13 changes: 7 additions & 6 deletions web/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@ export default function Home() {
const [isSubmitting, setIsSubmitting] = useState(false);
const [isGated, setIsGated] = useState(false);

// useEffect(
// () =>
// setIsGated(window.location.host === "rollyourown.preview.cartridge.gg"),
// [],
// );
useEffect(
() =>
//setIsGated(window.location.host === "rollyourown.preview.cartridge.gg"),
setIsGated(true),
[],
);

const [isTutorialOpen, setIsTutorialOpen] = useState(false);

Expand All @@ -64,7 +65,7 @@ export default function Home() {
<Text align="center">Under Construction</Text>
</HStack>
<Text align="center">
Get ready hustlers... Season II starts in September
Get ready hustlers... Season III starts in November
</Text>
</VStack>
) : (
Expand Down

0 comments on commit ce2282e

Please sign in to comment.