Skip to content

Commit

Permalink
chore: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Feb 24, 2024
1 parent 4519ed7 commit 3a7aa15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/pages/overview.vue
Expand Up @@ -20,7 +20,7 @@ useHead({
const blocks: Map<number, HTMLElement> = reactive(new Map())
const activeBlocks = ref<number[]>([])
const edittingNote = ref<string | null>(null)
const edittingNote = ref<number | null>(null)
function isElementInViewport(el: HTMLElement) {
const rect = el.getBoundingClientRect()
Expand Down

0 comments on commit 3a7aa15

Please sign in to comment.