hide subs for now

This commit is contained in:
zmeyer44 2023-10-29 13:27:16 -04:00
parent a6fe6093f8
commit 7be4f0934f
2 changed files with 3 additions and 5 deletions

View File

@ -36,6 +36,7 @@ export default function MySubscription({ pubkey }: MySubscription) {
}
}
if (!subscriptionTiers.length) return null;
return null;
return (
<>
{subscriptionTiers.map((e) => {

View File

@ -1,4 +1,5 @@
import { HiOutlineUserGroup } from "react-icons/hi2";
import AvatarStack from "@/components/ProfileContainers/AvatarStack";
import UserRow from "./UserRow";
type AttendeesContainerProps = {
@ -13,11 +14,7 @@ export default function AttendeesContainer({
<HiOutlineUserGroup className="h-5 w-5" />
<h3 className="text-lg font-semibold">Attendees</h3>
</div>
<ul className="max-h-[200px] overflow-hidden">
{attendees.map((pubkey) => (
<UserRow key={pubkey} pubkey={pubkey} />
))}
</ul>
<AvatarStack pubkeys={attendees} />
</div>
);
}