Skip to content

Commit

Permalink
chore: comment out channels join thing (#3839)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Sep 28, 2023
1 parent b0fc1bb commit 87490a4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions apps/web/src/components/Channel/Details.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Join from '@components/Shared/Channel/Join';
import Markup from '@components/Shared/Markup';
import Slug from '@components/Shared/Slug';
import { ClockIcon } from '@heroicons/react/24/outline';
Expand All @@ -16,8 +15,6 @@ import { useState } from 'react';
import { useAppStore } from 'src/store/app';
import { create } from 'zustand';

import Members from './Members';

// Member count state
interface ChannelMemberCountState {
membersCount: number;
Expand Down Expand Up @@ -94,8 +91,8 @@ const Details: FC<DetailsProps> = ({ channel }) => {
<Markup>{channel.description}</Markup>
</div>
<div className="space-y-5">
<Members />
{currentProfile ? <Join channel={channel} /> : null}
{/* <Members /> */}
{/* {currentProfile ? <Join channel={channel} /> : null} */}
<div className="divider w-full" />
<div className="space-y-2">
{channel.instagram ? (
Expand Down

1 comment on commit 87490a4

@vercel
Copy link

@vercel vercel bot commented on 87490a4 Sep 28, 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:

web – ./apps/web

lenster.vercel.app
web-heyxyz.vercel.app
heyxyz.vercel.app
lenster.xyz
web-git-main-heyxyz.vercel.app

Please sign in to comment.