merge main into websitefinal

This commit is contained in:
2026-04-15 12:26:31 -06:00
212 changed files with 10517 additions and 1699 deletions

View File

@@ -15,14 +15,11 @@ export default function DisplayNav() {
const [menuOpen, setMenuOpen] = useState(false);
useEffect(() => {
if (!token) return;
fetch("/api/v1/stores?size=100", {
headers: { Authorization: `Bearer ${token}` },
})
fetch("/api/v1/stores?size=100")
.then((r) => (r.ok ? r.json() : null))
.then((data) => { if (data) setStores(data.content ?? []); })
.catch(() => {});
}, [token]);
}, []);
function handleLogout() {
logout();