remove defineProps import

This commit is contained in:
Julien Calixte
2024-01-09 23:44:04 +01:00
parent 4551806b0d
commit eca44b3e76
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ const props = defineProps<{
sha: string
}>()
const shaProp = computed((props) => props.sha)
const shaProp = computed(() => props.sha)
const { backlink } = useBacklinks(shaProp)
const { addStackedNote } = useRouteQueryStackedNotes()