feat(react): comment out unused parts
This commit is contained in:
parent
4063549ff7
commit
89177dfdc3
|
@ -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 = () => {
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue