mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-21 11:22:36 -05:00
fix: Restore recipe meta for non-logged-in users (#6286)
This commit is contained in:
@@ -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,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user