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

restore to beta

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