Skip to content

Commit

Permalink
Reduce debounce time
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKostka committed Dec 5, 2023
1 parent caf6e15 commit 542b08b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Pages/Home/Components/DiscoveryView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default {
}, time)
},
onResize () {
this.debounceResize(50)
this.debounceResize(15)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default {
}, time)
},
onResize () {
this.debounceResize(50)
this.debounceResize(15)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Pages/Home/Components/PhotoTextView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default {
}, time)
},
onResize () {
this.debounceResize(50)
this.debounceResize(15)
}
}
}
Expand Down

0 comments on commit 542b08b

Please sign in to comment.