diff --git a/wp-content/themes/moonshine/app/components/builder/BuilderSections.vue b/wp-content/themes/moonshine/app/components/builder/BuilderSections.vue
index 47cfcb3..46485a0 100644
--- a/wp-content/themes/moonshine/app/components/builder/BuilderSections.vue
+++ b/wp-content/themes/moonshine/app/components/builder/BuilderSections.vue
@@ -1,5 +1,5 @@
diff --git a/wp-content/themes/moonshine/app/components/sections/SectionTextBlock.global.vue b/wp-content/themes/moonshine/app/components/sections/SectionTextBlock.global.vue
index e387a98..eafdbc4 100644
--- a/wp-content/themes/moonshine/app/components/sections/SectionTextBlock.global.vue
+++ b/wp-content/themes/moonshine/app/components/sections/SectionTextBlock.global.vue
@@ -1,5 +1,5 @@
diff --git a/wp-content/themes/moonshine/app/components/site/SiteFooterCopyright.vue b/wp-content/themes/moonshine/app/components/site/SiteFooterCopyright.vue
index 682f3b2..e9805d2 100644
--- a/wp-content/themes/moonshine/app/components/site/SiteFooterCopyright.vue
+++ b/wp-content/themes/moonshine/app/components/site/SiteFooterCopyright.vue
@@ -1,5 +1,5 @@
diff --git a/wp-content/themes/moonshine/app/composables/useAuthConnexion.ts b/wp-content/themes/moonshine/app/composables/useAuthConnexion.ts
index 70ff676..dbd07b1 100644
--- a/wp-content/themes/moonshine/app/composables/useAuthConnexion.ts
+++ b/wp-content/themes/moonshine/app/composables/useAuthConnexion.ts
@@ -28,7 +28,7 @@ export function useAuthConnexion() {
async function login({ data: variables }: FormSubmitEvent, redirect?: string) {
try {
const { data } = await loginMutate(variables);
- if (!data.login) {
+ if (!data?.login) {
throw new Error(`Échec de la connexion par mot de passe.`);
}
await redirectTo(redirect);
diff --git a/wp-content/themes/moonshine/app/pages/[...uri].vue b/wp-content/themes/moonshine/app/pages/[...uri].vue
index f023b65..36af0de 100644
--- a/wp-content/themes/moonshine/app/pages/[...uri].vue
+++ b/wp-content/themes/moonshine/app/pages/[...uri].vue
@@ -1,6 +1,6 @@