Skip to content

Commit d8f78b2

Browse files
committed
fix: minor ui
1 parent b068f89 commit d8f78b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
</template>
152152

153153
<script setup lang="ts">
154-
import { ref } from "vue";
154+
import { ref, Ref } from "vue";
155155
import { MewHeader, MewFooter, MEWSubscribe } from "./libs/main";
156156
import { RouterLink } from "vue-router";
157157
import { PROJECTS } from "@/helpers/links";
@@ -172,7 +172,7 @@ type useI18nParams = {
172172
173173
const openSubscirbe = ref(true);
174174
const useI18n = (param: useI18nParams) => {
175-
const _locale = param.locale || "zh";
175+
const _locale = param.locale || "en";
176176
const t = (key: string) => {
177177
if (key.includes(".")) {
178178
const keyOne = key.split(".").shift();

src/libs/layouts/MewHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
:link-component="props.linkComponent"
274274
link-text=""
275275
@mewlink:click="trackAccessWallet"
276-
class="hidden sm:flex sm:ml-auto sm:mr-5 lg:mx-0 mx-items-center px-4 py-2 bg-black text-white h-10 rounded-3xl hoverOpacity"
276+
class="hidden sm:flex sm:ml-auto sm:mr-5 lg:mx-0 items-center px-4 py-2 bg-black text-white h-10 rounded-3xl hoverOpacity"
277277
>
278278
<span
279279
class="text-base xl:text-lg text-center font-medium leading-6 tracking-sp-06"

0 commit comments

Comments
 (0)