chore: disable rules in oxlint (#9154)

This commit is contained in:
Brooooooklyn
2024-12-13 10:49:35 +00:00
parent 2452ccd1e5
commit ea746e3d77
53 changed files with 621 additions and 269 deletions

View File

@@ -97,7 +97,7 @@ export const DayPicker = memo(function DayPicker(
const focused = document.activeElement;
// check if focused is a date cell
if (!focused?.hasAttribute('data-is-date-cell')) return;
if (!(focused as HTMLElement | null)?.dataset.isDateCell) return;
if (e.shiftKey) return;
e.preventDefault();