Skip to content

Commit

Permalink
fix linter oopsi 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Mulder committed Apr 25, 2024
1 parent 3b4d480 commit 4a8c0f0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jsx/form/DateTimePartialElement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ interface DateTimePartialElementProps {
* @param props The props of the component
* @returns The corresponding React element
*/
export default function DateTimePartialElement(props: DateTimePartialElementProps) {
function DateTimePartialElement(props: DateTimePartialElementProps) {
const onUserInput = props.onUserInput !== undefined
? props.onUserInput
: () => console.warn('onUserInput() callback is not set');
Expand Down Expand Up @@ -228,3 +228,5 @@ export default function DateTimePartialElement(props: DateTimePartialElementProp
</div>
);
}

export default DateTimePartialElement;

0 comments on commit 4a8c0f0

Please sign in to comment.