Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit b349916

Browse files
khalid/fix platform order (#2574)
* fixed platform order * revert text
1 parent dd8547c commit b349916

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

src/pages/home/platform-carousel/_details.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,28 @@ const DownloadLink = styled(StyledLink)`
1212

1313
const image_query = graphql`
1414
query {
15-
platforms_mt5: file(relativePath: { eq: "home/platforms_mt5.png" }) {
15+
platforms_deriv_go: file(relativePath: { eq: "home/platforms_deriv_go_m.png" }) {
1616
...fadeIn
1717
}
18-
platforms_dtrader: file(relativePath: { eq: "home/platforms_dtrader.png" }) {
19-
...homePageHeroFadeIn
20-
}
21-
platforms_derivx: file(relativePath: { eq: "home/platforms_derivx.png" }) {
18+
platforms_mt5: file(relativePath: { eq: "home/platforms_mt5_m.png" }) {
2219
...fadeIn
2320
}
24-
platforms_dbot: file(relativePath: { eq: "home/platforms_dbot.png" }) {
21+
platforms_dtrader: file(relativePath: { eq: "home/platforms_dtrader_m.png" }) {
22+
...homePageHeroFadeIn
23+
}
24+
platforms_derivx: file(relativePath: { eq: "home/platforms_derivx_m.png" }) {
2525
...fadeIn
2626
}
27-
platforms_deriv_go: file(relativePath: { eq: "home/platforms_deriv_go.png" }) {
27+
platforms_dbot: file(relativePath: { eq: "home/platforms_dbot_m.png" }) {
2828
...fadeIn
2929
}
30-
platforms_smarttrader: file(relativePath: { eq: "home/platforms_smarttrader.png" }) {
30+
platforms_smarttrader: file(relativePath: { eq: "home/platforms_smarttrader_m.png" }) {
3131
...fadeIn
3232
}
33-
platforms_binary_bot: file(relativePath: { eq: "home/platforms_binary_bot.png" }) {
33+
platforms_binary_bot: file(relativePath: { eq: "home/platforms_binary_bot_m.png" }) {
3434
...fadeIn
3535
}
36-
platforms_api: file(relativePath: { eq: "home/platforms_api.png" }) {
36+
platforms_api: file(relativePath: { eq: "home/platforms_api_m.png" }) {
3737
...fadeIn
3838
}
3939
}

src/pages/home/platform-carousel/_mobile-platform-carousel.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ const settings = {
6767

6868
const image_query = graphql`
6969
query {
70+
platforms_deriv_go: file(relativePath: { eq: "home/platforms_deriv_go_m.png" }) {
71+
...fadeIn
72+
}
7073
platforms_mt5: file(relativePath: { eq: "home/platforms_mt5_m.png" }) {
7174
...fadeIn
7275
}
@@ -79,9 +82,6 @@ const image_query = graphql`
7982
platforms_dbot: file(relativePath: { eq: "home/platforms_dbot_m.png" }) {
8083
...fadeIn
8184
}
82-
platforms_deriv_go: file(relativePath: { eq: "home/platforms_deriv_go_m.png" }) {
83-
...fadeIn
84-
}
8585
platforms_smarttrader: file(relativePath: { eq: "home/platforms_smarttrader_m.png" }) {
8686
...fadeIn
8787
}

0 commit comments

Comments
 (0)