Merge remote-tracking branch 'origin/main'

This commit is contained in:
Joseph 2026-03-26 10:08:22 +07:00
commit c8e2ca9d4f
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
node_modules node_modules
.env .env
*/*.db */*.db
data/ebay_items.db

View File

@ -405,8 +405,8 @@
let currentProfileId = null; let currentProfileId = null;
let items = []; let items = [];
let isScanning = false; let isScanning = false;
const API_URL = "http://localhost:4000" // const API_URL = "http://localhost:4000"
// const API_URL = "https://logs1.danielvu.com/ebay-price-check" const API_URL = "https://logs1.danielvu.com/ebay-price-check"
const fmat = (v) => new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(v || 0); const fmat = (v) => new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(v || 0);
async function init() { async function init() {