Skip to content

Commit

Permalink
refactor(debugview.vue): optimize ux
Browse files Browse the repository at this point in the history
  • Loading branch information
supersonictw committed Oct 24, 2024
1 parent f7d246e commit aff9ffb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/DebugView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{{ tokenType }}
</span>
</h1>
<p class="text-base text-slate-900 sm:mx-auto lg:mx-0">
<p class="mt-3 text-base text-slate-900 sm:mx-auto lg:mx-0">
請勿洩漏給任何人(包括家人),避免他們拿來做壞壞的事情(比如刷爆你的信用卡)。
</p>
<p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
Expand Down Expand Up @@ -71,7 +71,7 @@ const tokenType = computed(() => {
});
const tokenContent = computed(() => {
const tokenPrefix = isWithGuard.value ? "Xara" : "Sara";
const tokenPrefix = isWithGuard.value ? "XARA" : "SARA";
const xara = `${tokenPrefix} ${saraToken}|${guardToken}`;
const sara = `${tokenPrefix} ${saraToken}`;
Expand Down

0 comments on commit aff9ffb

Please sign in to comment.