User Auth Done

This commit is contained in:
2026-08-05 22:00:49 +05:30
parent dbac720ce0
commit 076c4ff68f
33 changed files with 758 additions and 79 deletions

View File

@@ -7,7 +7,7 @@ function Scanner({ onSelectStock, onSignal }) {
const loadData = async () => {
try {
const res = await axios.get("http://127.0.0.1:8000/scan");
const res = await axios.get("http://127.0.0.1:8000/api/scanner/scan");
const newData = res.data;
const best = newData.best_5 && newData.best_5.length > 0 ? newData.best_5[0] : null;