Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
chore: remove images duplicate (#5747)
Browse files Browse the repository at this point in the history
* chore: remove images duplicate

* fix: 2007 cryptocurrency image doesnt look the same
  • Loading branch information
jia-deriv authored Oct 11, 2023
1 parent e3e774e commit c386249
Show file tree
Hide file tree
Showing 21 changed files with 18 additions and 54 deletions.
2 changes: 0 additions & 2 deletions src/components/elements/symbols-shortcode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ import OTC_IBEX35 from 'images/svg/symbols/markets-stocks-and-indices/european-i
import OTC_SX5E from 'images/svg/symbols/markets-stocks-and-indices/european-indices/europe-50.svg'
import OTC_FCHI from 'images/svg/symbols/markets-stocks-and-indices/european-indices/france-40.svg'
import OTC_N225 from 'images/svg/symbols/markets-stocks-and-indices/asian-indices/japan-225.svg'
import OTC_FTSE from 'images/svg/symbols/markets-stocks-and-indices/european-indices/uk-100.svg'
import OTC_NDX from 'images/svg/symbols/markets-stocks-and-indices/american-indices/us-tech-100.svg'
import OTC_DJI from 'images/svg/symbols/markets-stocks-and-indices/american-indices/wall-street-30.svg'
import OTC_SPC from 'images/svg/symbols/markets-stocks-and-indices/american-indices/us-500.svg'
Expand Down Expand Up @@ -284,7 +283,6 @@ export {
OTC_SX5E,
OTC_FCHI,
OTC_N225,
OTC_FTSE,
OTC_NDX,
OTC_DJI,
OTC_SPC,
Expand Down
10 changes: 0 additions & 10 deletions src/components/elements/symbols.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ import CADJPY from 'images/svg/symbols/cad-jpy.svg'
import CARDANO from 'images/svg/symbols/cardano.svg'
import CHAINLINK from 'images/svg/symbols/chainlink.svg'
import CHFJPY from 'images/svg/symbols/chf-jpy.svg'
import CLBRENT from 'images/svg/symbols/cl-brent.svg'
import COPPERUSD from 'images/svg/symbols/copper-usd.svg'
import CRASH1000 from 'images/svg/symbols/crash-indices-1000.svg'
import CRASH1000NEW from 'images/svg/symbols/crash-indices-1000-new.svg'
Expand Down Expand Up @@ -178,7 +177,6 @@ import NZDCHF from 'images/svg/symbols/nzd-chf.svg'
import NZDJPY from 'images/svg/symbols/nzd-jpy.svg'
import NZDSGD from 'images/svg/symbols/nzd-sgd.svg'
import NZDUSD from 'images/svg/symbols/nzd-usd.svg'
import OILUSD from 'images/svg/symbols/oil-usd.svg'
import OMGUSD from 'images/svg/symbols/omg-usd.svg'
import OTCAUSTRALIAN from 'images/svg/symbols/otcaustralian.svg'
import OTCDUTCH from 'images/svg/symbols/otcdutch.svg'
Expand Down Expand Up @@ -266,7 +264,6 @@ import STOCKSGERMANY30 from 'images/svg/symbols/markets-stocks-and-indices/europ
import STOCKSGERMANY40 from 'images/svg/symbols/markets-stocks-and-indices/european-indices/germany-40.svg'
import STOCKSNETHERLANDS25 from 'images/svg/symbols/markets-stocks-and-indices/european-indices/netherlands-25.svg'
import STOCKSSPAIN35 from 'images/svg/symbols/markets-stocks-and-indices/european-indices/spain-35.svg'
import STOCKSUK100 from 'images/svg/symbols/markets-stocks-and-indices/european-indices/uk-100.svg'
import STOCKSSWISS20 from 'images/svg/symbols/markets-stocks-and-indices/european-indices/swiss-20.svg'
import STOCKSADIDASSALOMON from 'images/svg/symbols/markets-stocks-and-indices/american-stocks/stocks-adidas-salomon.svg'
import STOCKSADVANCEDMICRODEVICES from 'images/svg/symbols/markets-stocks-and-indices/american-stocks/stocks-amd.svg'
Expand Down Expand Up @@ -350,8 +347,6 @@ import MNR from 'images/svg/symbols/monero_flag.svg'
import OMICEGO from 'images/svg/symbols/omise-go.svg'
import VBOOMIC300 from 'images/svg/symbols/volatility-boom-300-new.svg'
import VCRASHIC300 from 'images/svg/symbols/volatility-crash-300-new.svg'
import VINDEXIC200 from 'images/svg/symbols/volatility-index-ic-200.svg'
import VINDEXIC300 from 'images/svg/symbols/volatility-index-ic-300.svg'
import VINDEX2001S from 'images/svg/symbols/volatility_200_1s.svg'
import VINDEX3001S from 'images/svg/symbols/volatility_300_1s.svg'
import VINDEX1501S from 'images/svg/symbols/volatility_150_1s.svg'
Expand Down Expand Up @@ -414,7 +409,6 @@ export {
CADJPY,
CHAINLINK,
CHFJPY,
CLBRENT,
COPPERUSD,
CRASH1000,
CRASH1000NEW,
Expand Down Expand Up @@ -548,7 +542,6 @@ export {
NZDJPY,
NZDSGD,
NZDUSD,
OILUSD,
OMGUSD,
OMICEGO,
OTCAUSTRALIAN,
Expand Down Expand Up @@ -635,7 +628,6 @@ export {
STOCKSGERMANY40,
STOCKSNETHERLANDS25,
STOCKSSPAIN35,
STOCKSUK100,
STOCKSADIDASSALOMON,
STOCKSAIRBNB,
STOCKSALIBABAGROUP,
Expand Down Expand Up @@ -717,8 +709,6 @@ export {
MNR,
VBOOMIC300,
VCRASHIC300,
VINDEXIC200,
VINDEXIC300,
VINDEX2001S,
VINDEX1501S,
VINDEX2501S,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { CardType } from 'features/components/atoms/card/type'
import Forex from 'images/svg/markets/forex_markets.svg'
import Forex from 'images/svg/trade-types/forex.svg'
import Derived from 'images/svg/markets/derived_markets.svg'
import Stocks from 'images/svg/markets/stocks_markets.svg'
import CryptoCurrencies from 'images/svg/markets/crypto_markets.svg'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Forex from 'images/svg/markets/forex_markets.svg'
import Forex from 'images/svg/trade-types/forex.svg'
import Stocks from 'images/svg/markets/stocks_markets.svg'
import CryptoCurrencies from 'images/svg/markets/crypto_markets.svg'
import Commodities from 'images/svg/markets/commodities_markets.svg'
Expand Down
2 changes: 1 addition & 1 deletion src/images/svg/markets/cryptocurrencies-new.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 0 additions & 4 deletions src/images/svg/markets/forex_markets.svg

This file was deleted.

1 change: 0 additions & 1 deletion src/images/svg/symbols/cl-brent.svg

This file was deleted.

1 change: 0 additions & 1 deletion src/images/svg/symbols/european-indices/uk-100.svg

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion src/images/svg/symbols/oil-usd.svg

This file was deleted.

1 change: 0 additions & 1 deletion src/images/svg/symbols/volatility-index-ic-200.svg

This file was deleted.

7 changes: 0 additions & 7 deletions src/images/svg/trading-specification/deriv-ez.svg

This file was deleted.

Loading

1 comment on commit c386249

@vercel
Copy link

@vercel vercel bot commented on c386249 Oct 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

deriv-com – ./

deriv-com.binary.sx
deriv-com-git-master.binary.sx

Please sign in to comment.