Fix all build errors before updating prod

This commit is contained in:
Gabriel Brown 2024-07-22 15:59:31 -05:00
parent 6456061571
commit 7d8d1d9be3
2 changed files with 5 additions and 1 deletions

View File

@ -29,6 +29,9 @@ const config = {
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-empty-interface": [
"warn",
],
"@typescript-eslint/require-await": "off",
"@typescript-eslint/no-misused-promises": [
"error",
@ -58,4 +61,4 @@ const config = {
]
}
}
module.exports = config;
module.exports = config;

View File

@ -61,6 +61,7 @@ function Calendar({
...classNames,
}}
components={{
// @ts-expect-error - I didn't even write this code man cmon
IconLeft: ({ ...props }) => <ChevronLeft className="h-4 w-4" />,
IconRight: ({ ...props }) => <ChevronRight className="h-4 w-4" />,
}}