toggleStackSelection(stack.Id, isRedeploying)}
- className="h-5 w-5 text-purple-500 focus:ring-purple-400 border-gray-600 bg-gray-900 rounded"
- disabled={isRedeploying}
+ onChange={() => toggleStackSelection(stack.Id, !isSelectable)}
+ className={`h-5 w-5 text-purple-500 focus:ring-purple-400 border-gray-600 bg-gray-900 rounded ${!isSelectable ? 'opacity-40 cursor-not-allowed' : ''}`}
+ disabled={!isSelectable}
/>
{stack.Name}
@@ -196,15 +237,29 @@ export default function Stacks() {