Commit 748a5ead authored by Greg Bugyis's avatar Greg Bugyis Committed by GitHub

fix: Token Details - move About section below Market Stats (#4483)

parent 5659fe21
...@@ -120,16 +120,6 @@ export default function LoadingTokenDetail() { ...@@ -120,16 +120,6 @@ export default function LoadingTokenDetail() {
</LoadingChartContainer> </LoadingChartContainer>
<Space heightSize={32} /> <Space heightSize={32} />
</ChartHeader> </ChartHeader>
<AboutContainer>
<AboutHeader>
<SquareLoadingBubble />
</AboutHeader>
<LongLoadingBubble />
<LongLoadingBubble />
<HalfLoadingBubble />
<ResourcesContainer>{null}</ResourcesContainer>
</AboutContainer>
<StatsSection> <StatsSection>
<StatsLoadingContainer> <StatsLoadingContainer>
<StatPair> <StatPair>
...@@ -154,6 +144,16 @@ export default function LoadingTokenDetail() { ...@@ -154,6 +144,16 @@ export default function LoadingTokenDetail() {
</StatPair> </StatPair>
</StatsLoadingContainer> </StatsLoadingContainer>
</StatsSection> </StatsSection>
<AboutContainer>
<AboutHeader>
<SquareLoadingBubble />
</AboutHeader>
<LongLoadingBubble />
<LongLoadingBubble />
<HalfLoadingBubble />
<ResourcesContainer>{null}</ResourcesContainer>
</AboutContainer>
<ContractAddressSection>{null}</ContractAddressSection> <ContractAddressSection>{null}</ContractAddressSection>
</TopArea> </TopArea>
) )
......
...@@ -238,7 +238,6 @@ export default function LoadedTokenDetail({ address }: { address: string }) { ...@@ -238,7 +238,6 @@ export default function LoadedTokenDetail({ address }: { address: string }) {
<ParentSize>{({ width, height }) => <PriceChart token={token} width={width} height={height} />}</ParentSize> <ParentSize>{({ width, height }) => <PriceChart token={token} width={width} height={height} />}</ParentSize>
</ChartContainer> </ChartContainer>
</ChartHeader> </ChartHeader>
<AboutSection address={address} tokenDetailData={relevantTokenDetailData} />
<StatsSection> <StatsSection>
<StatPair> <StatPair>
<Stat> <Stat>
...@@ -269,6 +268,7 @@ export default function LoadedTokenDetail({ address }: { address: string }) { ...@@ -269,6 +268,7 @@ export default function LoadedTokenDetail({ address }: { address: string }) {
</Stat> </Stat>
</StatPair> </StatPair>
</StatsSection> </StatsSection>
<AboutSection address={address} tokenDetailData={relevantTokenDetailData} />
<ContractAddressSection> <ContractAddressSection>
<Contract> <Contract>
Contract address Contract address
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment