Skip to content

Commit

Permalink
Run prettier + eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
snelsi committed Feb 18, 2023
1 parent c601046 commit e8c8919
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/useResizeDetector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ export interface useResizeDetectorProps<T extends HTMLElement> extends Props {
targetRef?: MutableRefObject<T>;
}

function useResizeDetector<T extends HTMLElement = any>(props: useResizeDetectorProps<T> = {}): UseResizeDetectorReturn<T> {
function useResizeDetector<T extends HTMLElement = any>(
props: useResizeDetectorProps<T> = {}
): UseResizeDetectorReturn<T> {
const {
skipOnMount = false,
refreshMode,
Expand Down

0 comments on commit e8c8919

Please sign in to comment.