feat(react): comment out unused parts

This commit is contained in:
Pavel Prichodko 2022-05-23 14:39:42 +02:00
parent 4063549ff7
commit 89177dfdc3
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
3 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@ import { ChannelItem } from './channel-item'
const CHANNELS = {
Public: ['welcome', 'general', 'random'],
Other: ['random', 'general', 'welcome'],
Internal: ['watercooler', 'pm'],
}
export const Channels = () => {

View File

@ -142,10 +142,10 @@ export const GetStarted = () => {
Want to jump into the discussion?
</Heading>
<Grid gap={3} align="center" justify="center">
<DialogTrigger>
{/* <DialogTrigger>
<Button>Sync with Status profile</Button>
<SyncStatusProfileDialog />
</DialogTrigger>
</DialogTrigger> */}
<DialogTrigger>
<Button>Connect Wallet</Button>

View File

@ -7,7 +7,7 @@ import { Separator } from '~/src/system'
import { Channels } from './components/channels'
import { CommunityInfo } from './components/community-info'
import { GetStarted } from './components/get-started'
import { Messages } from './components/messages'
// import { Messages } from './components/messages'
export const MainSidebar = () => {
const { options } = useAppState()
@ -20,8 +20,8 @@ export const MainSidebar = () => {
<Wrapper>
<CommunityInfo />
<Channels />
<Separator css={{ margin: '16px 0' }} />
<Messages />
{/* <Separator css={{ margin: '16px 0' }} />
<Messages /> */}
<Separator css={{ margin: '16px 0' }} />
<GetStarted />
</Wrapper>