Refactor menu flows into dedicated pages
Some checks failed
ci / test (push) Has been cancelled

This commit is contained in:
VPN SaaS Dev
2026-05-16 11:59:09 +09:00
parent 01a69fc42d
commit ecfb5aa949
20 changed files with 2415 additions and 97 deletions

View File

@@ -150,7 +150,7 @@ function renderProfileLink(detail) {
link.classList.add("hidden");
return;
}
link.href = `/?section=carProfile&car_id=${detail.vehicle.id}`;
link.href = `/car_profile.html?car_id=${detail.vehicle.id}`;
link.classList.remove("hidden");
}