chore: lint

This commit is contained in:
amhsirak
2025-01-09 19:20:14 +05:30
parent 1546ce59aa
commit e87952535a

View File

@@ -27,7 +27,7 @@ const DatePicker: React.FC<DatePickerProps> = ({ coordinates, selector, onClose
};
return (
<div
<div
style={{
position: 'absolute',
left: `${coordinates.x}px`,
@@ -48,20 +48,19 @@ const DatePicker: React.FC<DatePickerProps> = ({ coordinates, selector, onClose
autoFocus
/>
<div className="flex justify-end space-x-2">
<button
<button
onClick={onClose}
className="px-3 py-1 text-sm text-gray-600 hover:text-gray-800 border rounded"
>
Cancel
</button>
<button
<button
onClick={handleConfirm}
disabled={!selectedDate}
className={`px-3 py-1 text-sm rounded ${
selectedDate
? 'bg-blue-500 text-white hover:bg-blue-600'
className={`px-3 py-1 text-sm rounded ${selectedDate
? 'bg-blue-500 text-white hover:bg-blue-600'
: 'bg-gray-300 text-gray-500 cursor-not-allowed'
}`}
}`}
>
Confirm
</button>