Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tachibana-shin committed Apr 26, 2024
1 parent 8be2dfc commit 8baa9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/OverScrollX.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { onMounted, ref } from "vue"
const statusChaptersScroll = ref<"start" | "startImp" | "end" | "pending">(
"start"
)
const onChaptersScroll = debounce(function ({ target }: UIEvent) {
const onChaptersScroll = debounce(function ({ target }: Event) {
const { scrollLeft, offsetWidth, scrollWidth } = target as HTMLDivElement
if (scrollLeft === 0) {
Expand Down

0 comments on commit 8baa9fd

Please sign in to comment.