How to hide back button on mobile device?

You can use this for your CSS if you have access to it.

button[data-testid="menu-left-button"] {
display: none;
}
1 Like