Skip to content

Commit

Permalink
Improved: removed unused event argument in onScroll method (#608)
Browse files Browse the repository at this point in the history
  • Loading branch information
amansinghbais committed Jan 15, 2025
1 parent 72fd7b4 commit fa7e3d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/HardCountDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ async function readyForReview() {
// This function observes the scroll event on the main element, creates an IntersectionObserver to track when products come into view,
// and updates the current product state and navigation when a product intersects with the main element.
const onScroll = (event: any) => {
const onScroll = () => {
selectedCountUpdateType.value = defaultRecountUpdateBehaviour.value
};
Expand Down

0 comments on commit fa7e3d0

Please sign in to comment.