Skip to content

Commit

Permalink
Merge pull request #178 from huang-julien/fix/cldogimagetpyes
Browse files Browse the repository at this point in the history
  • Loading branch information
Baroshem committed Jan 8, 2024
2 parents 868ed94 + 75f823f commit f71030c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/components/CldOgImage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const { url: twitterImageUrl } = useCldImageUrl({
});
const computedTwitterTitle = computed(
() => props.twitterTitle || currentRoute.value.meta?.title || " "
() => props.twitterTitle || currentRoute.value.meta?.title as string || " "
);
</script>

Expand Down

0 comments on commit f71030c

Please sign in to comment.