Files
auv/.microcompact/mr64xo0n/call_47356d85d4bc4ee9a7d685c0.txt
2026-07-05 21:29:17 +08:00

13 lines
738 B
Plaintext
Executable File

The file /home/project/src/routes/stock.$code.tsx has been updated. Made 1 replacement.
Here's the result of running `cat -n` on a snippet of the edited file:
64→ const [stockInfo, setStockInfo] = useState<StockInfo | null>(null);
65→ const [chartData, setChartData] = useState<StockData[]>([]);
66→ const [fundFlowData, setFundFlowData] = useState<FundFlowData[]>([]);
67→ const [fundFlowSummary, setFundFlowSummary] = useState<FundFlowSummary | null>(null);
68→ const [dailyTableDays, setDailyTableDays] = useState<number>(7);
69→ const [loading, setLoading] = useState(true);
70→ const [error, setError] = useState<string | null>(null);
71→
72→ useEffect(() => {
73→ loadStockData();