<script>
document.addEventListener("DOMContentLoaded", function () {
if (window.location.pathname.startsWith("/mobile/account/")) {
const allMenuLinks = document.querySelectorAll("ul.nav.navbar-nav li");
allMenuLinks.forEach(item => {
const link = item.querySelector("a");
if (link && link.textContent.trim().includes("Depo/Withdraw")) {
item.remove(); // Hapus hanya menu Depo/Withdraw
}
});
}
});
</script>