chore: lint

This commit is contained in:
amhsirak
2025-01-09 19:22:28 +05:30
parent 2ac581fa70
commit fe6d29a9a1

View File

@@ -57,11 +57,10 @@ const DateTimeLocalPicker: React.FC<DateTimeLocalPickerProps> = ({ coordinates,
<button <button
onClick={handleConfirm} onClick={handleConfirm}
disabled={!selectedDateTime} disabled={!selectedDateTime}
className={`px-3 py-1 text-sm rounded ${ className={`px-3 py-1 text-sm rounded ${selectedDateTime
selectedDateTime
? 'bg-blue-500 text-white hover:bg-blue-600' ? 'bg-blue-500 text-white hover:bg-blue-600'
: 'bg-gray-300 text-gray-500 cursor-not-allowed' : 'bg-gray-300 text-gray-500 cursor-not-allowed'
}`} }`}
> >
Confirm Confirm
</button> </button>