Skip to content

Commit

Permalink
changes hell 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-leisy committed Feb 20, 2025
1 parent 0145255 commit 314e89e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/components/navigation/CursorHoverPill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import { chakra } from '@chakra-ui/react';
import { IPositionState } from '@/types/IPositionState';

const ChakraBox = chakra(motion.div, {
// @ts-expect-error
// @TODO: Need to cricle back and properly set type.
// @ts-expect-error: @TODO: Need to circle back and properly set type.
shouldForwardProp: isValidMotionProp,
});

Expand Down
3 changes: 2 additions & 1 deletion src/hooks/useScrolledToBottom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ export const useScrolledToBottom = (
} else {
setIsAtBottom(false);
}
}, [pathname, scrollBoxRef]);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [pathname]);

return {
handleScroll,
Expand Down

0 comments on commit 314e89e

Please sign in to comment.