Skip to content

Commit

Permalink
🐛 fix: <code></code> 로 나오는 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kms0219kms authored Jan 8, 2024
1 parent 369bbe7 commit dd95c26
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pages/dashboard/verify.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,11 @@
<!-- 성공적으로 저장했습니다! -->
</h2>
<div class="flex flex-col text-gray-400 pt-3 gap-2">
<span v-if="switch_.confirm">
<span v-if="switch_.confirm" v-html="$t('verify.modal.applied')">
<!-- 새로운 유저가 <code>/verify</code> 명령어로 인증할 수 있습니다. -->
{{ $t('verify.modal.applied') }}
</span>
<span v-else>
<span v-else v-html="$t('verify.modal.deleted')">
<!-- 새로운 유저는 더 이상 <code>/verify</code> 명령어로 인증할 수 없습니다. -->
{{ $t('verify.modal.deleted') }}
</span>

<br />
Expand Down

0 comments on commit dd95c26

Please sign in to comment.