Remove debug statement (#520)

This commit is contained in:
Evan Simkowitz
2024-03-27 17:03:01 -07:00
committed by GitHub
parent 3abc1ac3d7
commit 052645e0df
-1
View File
@@ -312,7 +312,6 @@ const DatePicker: React.FC<DatePickerProps> = ({ selectedDate, format = "MM/DD/Y
};
const handleArrowNavigation = (key: string, currentPart: string) => {
console.log("Arrow key pressed: ", key);
const currentIndex = formatParts.indexOf(currentPart);
let targetInput;