Skip to content
Snippets Groups Projects
Commit 612585af authored by Aggarwal Himanshu's avatar Aggarwal Himanshu
Browse files

Fix cryptocurrency names in echarts

parent b5b8a35a
No related branches found
No related tags found
2 merge requests!17Merge develop into main,!10Add ability to select two cryptocurrencies for comparison
......@@ -72,7 +72,7 @@ function CompareChart() {
{
type: "line",
data: cryptoQuery.data?.prices,
name: "Solana",
name: firstCrypto,
smooth: true,
symbol: "none",
lineStyle: {
......@@ -87,7 +87,7 @@ function CompareChart() {
{
type: "line",
data: cryptoQuery2.data?.prices,
name: "Avalanche",
name: secondCrypto,
smooth: true,
symbol: "none",
lineStyle: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment