Skip to content

Commit

Permalink
fix(guild page): bring back the action button
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Feb 13, 2025
1 parent d7f15e2 commit 7eb4cf5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/[guild]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { Center, Heading, Spinner } from "@chakra-ui/react"
import { AccessHub } from "components/[guild]/AccessHub"
import { GuildPageBanner } from "components/[guild]/GuildPageBanner"
import { GuildPageImageAndName } from "components/[guild]/GuildPageImageAndName"
import { JoinButton } from "components/[guild]/JoinButton"
import { JoinModalProvider } from "components/[guild]/JoinModal/JoinModalProvider"
import { MintGuildPinProvider } from "components/[guild]/Requirements/components/GuildCheckout/MintGuildPinContext"
import Roles from "components/[guild]/Roles"
Expand Down Expand Up @@ -109,14 +110,14 @@ const GuildPage = (): JSX.Element => {
<LayoutHeadline className="max-w-screen-xl pt-12">
<GuildPageImageAndName />

{/* <div className="ml-auto flex gap-2">
<div className="ml-auto flex gap-2">
{!isMember && <JoinButton />}
{isAdmin && isDetailed ? (
<DynamicAddSolutionsAndEditGuildButton />
) : (
isMember && <DynamicRecheckAccessesAndLeaveButton />
)}
</div> */}
</div>
</LayoutHeadline>

{(description || Object.keys(socialLinks ?? {}).length > 0) && (
Expand Down

0 comments on commit 7eb4cf5

Please sign in to comment.