mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
c8b697687f
* Update EIP-1559 UI on the View Quote page (WIP) * UI redesign for the View Quote page in Swaps, update tests, refactoring * Update styles for the View Quote page * Improve scrolling and styling for the View Quote page * Update snapshots * Fix a scrolling issue * Use Ethereum mainnet for swaps API calls if it's Rinkeby * UI / content updates on the View Quote page * Remove unused content in Swaps * Fix an ESLint issue * Update UTs with the latest content * Renaming * Remove 2 more unused content strings
35 lines
570 B
Plaintext
35 lines
570 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Swap renders the component with initial props 1`] = `
|
|
<div>
|
|
<div
|
|
class="swaps"
|
|
>
|
|
<div
|
|
class="swaps__container"
|
|
>
|
|
<div
|
|
class="swaps__header"
|
|
>
|
|
<div
|
|
class="swaps__header-edit"
|
|
/>
|
|
<div
|
|
class="swaps__title"
|
|
>
|
|
Swap
|
|
</div>
|
|
<div
|
|
class="swaps__header-cancel"
|
|
>
|
|
Cancel
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="swaps__content"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|