completionId: cgen-2febac6afea74d9693914747a01654b6

cgen-2febac6afea74d9693914747a01654b6
This commit is contained in:
Builder.io 2025-11-10 19:52:35 +00:00
parent d879dc787c
commit c2a65773cd

View file

@ -157,22 +157,6 @@ export default function ArmSwitcher() {
))}
</div>
{/* Mobile Version - Single Button that opens Fullscreen Modal */}
<div className="flex md:hidden items-center">
<button
onClick={() => setIsModalOpen(true)}
aria-label="Open Arm Switcher"
className="p-2 rounded-md bg-gray-800/60 hover:bg-gray-700 transition-colors"
>
<Zap className="w-5 h-5 text-white" />
</button>
</div>
{/* Modal for mobile fullscreen arm switching */}
<ArmSwitcherModal
isOpen={isModalOpen}
onClose={() => setIsModalOpen(false)}
/>
</>
);
}