show store selector always

This commit is contained in:
2026-04-18 16:36:15 -06:00
parent da74491d55
commit 07c3219bec

View File

@@ -45,7 +45,7 @@ export default function DisplayNav() {
function closeMenu() { setMenuOpen(false); } function closeMenu() { setMenuOpen(false); }
const storeSelect = (extraCls = "") => user && stores.length > 0 && ( const storeSelect = (extraCls = "") => stores.length > 0 && (
<select <select
className={`bg-[rgba(47,47,47,0.1)] text-[#2f2f2f] border border-[rgba(47,47,47,0.35)] rounded-md px-[0.6rem] py-[0.3rem] text-[0.9rem] cursor-pointer outline-none transition-colors hover:bg-[rgba(47,47,47,0.2)] ${extraCls}`} className={`bg-[rgba(47,47,47,0.1)] text-[#2f2f2f] border border-[rgba(47,47,47,0.35)] rounded-md px-[0.6rem] py-[0.3rem] text-[0.9rem] cursor-pointer outline-none transition-colors hover:bg-[rgba(47,47,47,0.2)] ${extraCls}`}
value={selectedStoreId ?? ""} value={selectedStoreId ?? ""}