diff --git a/components/modules/proposal/ProposalChanges.vue b/components/modules/proposal/ProposalChanges.vue index cccb5e54..28965715 100644 --- a/components/modules/proposal/ProposalChanges.vue +++ b/components/modules/proposal/ProposalChanges.vue @@ -22,7 +22,7 @@ const props = defineProps({
- + {{ change.key }} {{ change.subspace }} diff --git a/middleware/mammoth-redirect.global.ts b/middleware/mammoth-redirect.global.ts index c50303c4..7f321884 100644 --- a/middleware/mammoth-redirect.global.ts +++ b/middleware/mammoth-redirect.global.ts @@ -2,7 +2,7 @@ export default defineNuxtRouteMiddleware(() => { if (import.meta.client) return const host = useRequestHeaders(["host"])?.host - if (host === "https://mammoth.celenium.io/") { + if (host === "mammoth.celenium.io/") { return navigateTo("https://celenium.io/", { redirectCode: 301 }) } })