feat(react): comment out unused parts

This commit is contained in:
Pavel Prichodko 2022-05-23 14:39:42 +02:00
parent 611d4ed81e
commit c96dff765e
No known key found for this signature in database
GPG Key ID: 8E4C82D464215E83
3 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

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