Skip to content

Commit 2353d44

Browse files
committed
feat: remove ads
1 parent ac37d90 commit 2353d44

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/components/Advertising/Advertising.logic.tsx

+8-5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ import { IDialogs } from '../../types/Dialogs/IDialogs';
66
import './Advertising.css';
77
import { Blockchain } from '../../blockchains/types.ts';
88

9-
const ads = {
9+
const ads: {
10+
[Blockchain.zkSync]: { image: string; redirect: string; trusted: boolean }[];
11+
[Blockchain.Scroll]: { image: string; redirect: string; trusted: boolean }[];
12+
} = {
1013
[Blockchain.zkSync]: [
11-
{
14+
/*{
1215
image: '/f62bde80/17b67c1d-0698-4b42-bf17-bdef269deee3.png',
1316
redirect: 'https://www.universalchains.io/',
1417
trusted: true,
@@ -17,14 +20,14 @@ const ads = {
1720
image: '/f62bde80/29003706-758f-42fe-9192-d3353e6879b0.svg',
1821
redirect: 'https://starter.bigint.co/projects/bigint-token/',
1922
trusted: true,
20-
}
23+
}*/
2124
],
2225
[Blockchain.Scroll]: [
23-
{
26+
/*{
2427
image: '/f62bde80/17b67c1d-0698-4b42-bf17-bdef269deee3.png',
2528
redirect: 'https://www.universalchains.io/',
2629
trusted: true,
27-
},
30+
},*/
2831
],
2932
};
3033

0 commit comments

Comments
 (0)