Skip to content

Commit 0b823ad

Browse files
committed
Fix redirect and proposal changes
1 parent 147c723 commit 0b823ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/modules/proposal/ProposalChanges.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const props = defineProps({
2222
<div :class="$style.content">
2323
<Flex v-if="Array.isArray(proposal.changes)" gap="16" :class="$style.changes">
2424
<Flex v-for="change in proposal.changes" wide direction="column" gap="4" :class="$style.change">
25-
<Flex justify="between" align="center" :class="$style.key">
25+
<Flex justify="between" align="center" gap="12" :class="$style.key">
2626
<Text size="13" weight="600" color="primary" mono> {{ change.key }} </Text>
2727
<Text size="13" weight="600" color="tertiary" mono> {{ change.subspace }} </Text>
2828
</Flex>

middleware/mammoth-redirect.global.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export default defineNuxtRouteMiddleware(() => {
22
if (import.meta.client) return
33

44
const host = useRequestHeaders(["host"])?.host
5-
if (host === "https://mammoth.celenium.io/") {
5+
if (host === "mammoth.celenium.io/") {
66
return navigateTo("https://celenium.io/", { redirectCode: 301 })
77
}
88
})

0 commit comments

Comments
 (0)