Commit 495fb062 authored by ian-jh's avatar ian-jh

restore to beta

parent 59e3f34d
...@@ -91,9 +91,7 @@ const Popup = styled(Flex)` ...@@ -91,9 +91,7 @@ const Popup = styled(Flex)`
border-radius: 8px; border-radius: 8px;
line-height: 183.52%; animation: ${fadeIn} 0.15s linear;
background: #404040;
border-radius: 8px;
color: ${({ theme }) => theme.textColor}; color: ${({ theme }) => theme.textColor};
font-style: italic; font-style: italic;
...@@ -646,10 +644,10 @@ export default function TransactionDetails(props) { ...@@ -646,10 +644,10 @@ export default function TransactionDetails(props) {
<ValueWrapper> <ValueWrapper>
{b( {b(
`${amountFormatter( `${amountFormatter(
props.independentValueParsed, props.dependentValueMaximum,
props.independentDecimals, props.dependentDecimals,
Math.min(4, props.independentDecimals) Math.min(4, props.dependentDecimals)
)} ${props.outputSymbol}` )} ${props.inputSymbol}`
)} )}
</ValueWrapper>{' '} </ValueWrapper>{' '}
</div> </div>
......
...@@ -51,6 +51,7 @@ export default function App() { ...@@ -51,6 +51,7 @@ export default function App() {
return ( return (
<> <>
<Suspense fallback={null}> <Suspense fallback={null}>
<AppWrapper>
<HeaderWrapper> <HeaderWrapper>
<Header /> <Header />
</HeaderWrapper> </HeaderWrapper>
...@@ -104,6 +105,10 @@ export default function App() { ...@@ -104,6 +105,10 @@ export default function App() {
</Web3ReactManager> </Web3ReactManager>
</Body> </Body>
</BodyWrapper> </BodyWrapper>
<FooterWrapper>
<Footer />
</FooterWrapper>
</AppWrapper>
</Suspense> </Suspense>
</> </>
) )
......
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