Skip to content

Commit

Permalink
close season (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
notV4l authored Oct 30, 2023
1 parent fc0a970 commit 82f16c0
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

1 comment on commit 82f16c0

@vercel
Copy link

@vercel vercel bot commented on 82f16c0 Oct 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

rollyourown – ./

rollyourown-git-main.preview.cartridge.gg
rollyourown.preview.cartridge.gg

Please sign in to comment.