bugfixing

This commit is contained in:
MuslemRahimi 2024-11-13 15:33:17 +01:00
parent c4d950f168
commit 62e4ee81d5

View File

@ -114,9 +114,11 @@
? "Sell"
: "Strong Sell";
historyList = recentData.slice(0, 30);
rawData = recentData;
historyList = rawData.slice(0, 50);
} else {
historyList = rawData.slice(0, 30);
rawData = data?.getAnalystTickerHistory;
historyList = rawData.slice(0, 50);
}
}