Clear code
This commit is contained in:
parent
1c0122effb
commit
ea1bb1eccd
|
@ -4,7 +4,7 @@ import { RootState } from '../../redux/store'
|
||||||
|
|
||||||
function PinnedNotification() {
|
function PinnedNotification() {
|
||||||
const pinnedMessage = useSelector((state: RootState) => state.pinnedMessage.pinnedMessage)
|
const pinnedMessage = useSelector((state: RootState) => state.pinnedMessage.pinnedMessage)
|
||||||
console.log(pinnedMessage)
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{pinnedMessage && pinnedMessage.pinned && (
|
{pinnedMessage && pinnedMessage.pinned && (
|
||||||
|
|
|
@ -4,7 +4,6 @@ import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow'
|
||||||
import Title from '../../components/General/Title'
|
import Title from '../../components/General/Title'
|
||||||
import NimbusLogo from '../../components/Logos/NimbusLogo'
|
import NimbusLogo from '../../components/Logos/NimbusLogo'
|
||||||
import { NodeIcon } from '@status-im/icons'
|
import { NodeIcon } from '@status-im/icons'
|
||||||
import EmojiPickerDialog from '../../components/General/EmojiPickerDialog'
|
|
||||||
import { Button as StatusButton, Text } from '@status-im/components'
|
import { Button as StatusButton, Text } from '@status-im/components'
|
||||||
import QuickStartBar from '../../components/General/QuickStartBar/QuickStartBar'
|
import QuickStartBar from '../../components/General/QuickStartBar/QuickStartBar'
|
||||||
|
|
||||||
|
@ -29,7 +28,6 @@ function LandingPage() {
|
||||||
<StatusButton icon={<NodeIcon size={20} />}>Get Started</StatusButton>
|
<StatusButton icon={<NodeIcon size={20} />}>Get Started</StatusButton>
|
||||||
</XStack>
|
</XStack>
|
||||||
</YStack>
|
</YStack>
|
||||||
<EmojiPickerDialog emojiStyle='TWITTER'/>
|
|
||||||
</PageWrapperShadow>
|
</PageWrapperShadow>
|
||||||
<QuickStartBar />
|
<QuickStartBar />
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Reference in New Issue