hide subs for now
This commit is contained in:
parent
a6fe6093f8
commit
7be4f0934f
@ -36,6 +36,7 @@ export default function MySubscription({ pubkey }: MySubscription) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!subscriptionTiers.length) return null;
|
if (!subscriptionTiers.length) return null;
|
||||||
|
return null;
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{subscriptionTiers.map((e) => {
|
{subscriptionTiers.map((e) => {
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { HiOutlineUserGroup } from "react-icons/hi2";
|
import { HiOutlineUserGroup } from "react-icons/hi2";
|
||||||
|
import AvatarStack from "@/components/ProfileContainers/AvatarStack";
|
||||||
|
|
||||||
import UserRow from "./UserRow";
|
import UserRow from "./UserRow";
|
||||||
type AttendeesContainerProps = {
|
type AttendeesContainerProps = {
|
||||||
@ -13,11 +14,7 @@ export default function AttendeesContainer({
|
|||||||
<HiOutlineUserGroup className="h-5 w-5" />
|
<HiOutlineUserGroup className="h-5 w-5" />
|
||||||
<h3 className="text-lg font-semibold">Attendees</h3>
|
<h3 className="text-lg font-semibold">Attendees</h3>
|
||||||
</div>
|
</div>
|
||||||
<ul className="max-h-[200px] overflow-hidden">
|
<AvatarStack pubkeys={attendees} />
|
||||||
{attendees.map((pubkey) => (
|
|
||||||
<UserRow key={pubkey} pubkey={pubkey} />
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user