Skip to content

Commit 5bfbdc1

Browse files
committed
feat: merge branch 'main' into feature/v2-v3-migration
2 parents 92c93b8 + dd1b38c commit 5bfbdc1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1988
-1477
lines changed

cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/mana.aave-v2.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const testData = {
9898
},
9999
};
100100

101-
describe('MANA INTEGRATION SPEC, AAVE V2 MARKET', () => {
101+
describe.skip('MANA INTEGRATION SPEC, AAVE V2 MARKET', () => {
102102
const skipTestState = skipState(false);
103103
configEnvWithTenderlyMainnetFork({});
104104
supply(testData.depositETH, skipTestState, true);

cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/mkr.aave-v2.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const testData = {
9898
},
9999
};
100100

101-
describe('MKR INTEGRATION SPEC, AAVE V2 MARKET', () => {
101+
describe.skip('MKR INTEGRATION SPEC, AAVE V2 MARKET', () => {
102102
const skipTestState = skipState(false);
103103
configEnvWithTenderlyMainnetFork({});
104104
supply(testData.depositETH, skipTestState, true);

cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/bal.polygon-v2.cy.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ const testData = {
5757
},
5858
};
5959

60-
describe('BAL INTEGRATION SPEC, POLYGON V2 MARKET', () => {
60+
// asset is not visible in the borrow list on Polygon V2
61+
describe.skip('BAL INTEGRATION SPEC, POLYGON V2 MARKET', () => {
6162
const skipTestState = skipState(false);
6263
configEnvWithTenderlyPolygonFork({});
6364

cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/crv.polygon-v2.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ const testData = {
5656
],
5757
},
5858
};
59-
60-
describe('CRV INTEGRATION SPEC, POLYGON V2 MARKET', () => {
59+
//asset is not visible in the borrow list on Polygon V2
60+
describe.skip('CRV INTEGRATION SPEC, POLYGON V2 MARKET', () => {
6161
const skipTestState = skipState(false);
6262
configEnvWithTenderlyPolygonFork({});
6363

cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/link.polygon-v2.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ const testData = {
5656
],
5757
},
5858
};
59-
60-
describe('LINK INTEGRATION SPEC, POLYGON V2 MARKET', () => {
59+
//asset is not visible in the borrow list on Polygon V2
60+
describe.skip('LINK INTEGRATION SPEC, POLYGON V2 MARKET', () => {
6161
const skipTestState = skipState(false);
6262
configEnvWithTenderlyPolygonFork({});
6363

pages/governance/proposal/[proposalId].governance.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,14 @@ export default function ProposalPage({
239239
<ReactMarkdown
240240
remarkPlugins={[remarkGfm]}
241241
components={{
242-
img({ src, alt }) {
242+
img({ src: _src, alt }) {
243+
if (!_src) return null;
244+
const src = /^\.\.\//.test(_src)
245+
? _src.replace(
246+
'../',
247+
'https://raw.githubusercontent.com/aave/aip/main/content/'
248+
)
249+
: _src;
243250
return <CenterAlignedImage src={src} alt={alt} />;
244251
},
245252
a({ node, ...rest }) {

pages/markets.page.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1+
import { ContentContainer } from 'src/components/ContentContainer';
12
import { MainLayout } from 'src/layouts/MainLayout';
2-
import MarketAssetsList from 'src/modules/markets/MarketAssetsList';
3+
import { MarketAssetsListContainer } from 'src/modules/markets/MarketAssetsListContainer';
34
import { MarketsTopPanel } from 'src/modules/markets/MarketsTopPanel';
45

5-
import { ContentContainer } from '../src/components/ContentContainer';
6-
76
export default function Markets() {
87
return (
98
<>
109
<MarketsTopPanel />
1110
<ContentContainer>
12-
<MarketAssetsList />
11+
<MarketAssetsListContainer />
1312
</ContentContainer>
1413
</>
1514
);

0 commit comments

Comments
 (0)