fix: Restore recipe meta for non-logged-in users (#6286)

This commit is contained in:
Michael Genson
2025-09-29 10:33:18 -05:00
committed by GitHub
parent d1824affff
commit 83bf21b947
2 changed files with 12 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ const router = useRouter();
const recipeId = route.params.id as string;
const api = usePublicApi();
const title = ref(route.meta?.title ?? "");
const title = ref(route.meta?.title as string ?? "");
useSeoMeta({
title,
});