Skip to content

Commit

Permalink
fix: change titles
Browse files Browse the repository at this point in the history
  • Loading branch information
gamalielhere committed Feb 13, 2025
1 parent 2171ae8 commit 10cd0ca
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<h2 v-show="isSupport">Support</h2>
<h2 v-show="isPhrase">Recovery phrase</h2>
<h2 v-show="isReset">Reset wallet?</h2>
<h2 v-show="isBackups">Backups</h2>
<h2 v-show="isBackups">Settings backup</h2>

<a class="settings__close" @click="$emit('window:close')">
<close-icon />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
<settings-inner-header v-bind="$attrs" :is-backups="true" />

<settings-switch
:title="`Settings backup ${isBackupsEnabled ? 'on' : 'off'}`"
:title="`Backup ${isBackupsEnabled ? 'on' : 'off'}`"
:is-checked="isBackupsEnabled"
@update:check="toggleBackups"
:has-border="false"
/>

<div class="settings-container__label">
Expand Down Expand Up @@ -41,8 +40,8 @@
:key="`entity-${entity.userId}-${index}`"
class="settings-container__backup-item"
>
<div>
<h4>{{ generateRandomNameWithSeed('_', entity.userId) }}</h4>
<div class="settings-container__backup-item__name">
<h4>{{ generateRandomNameWithSeed(' ', entity.userId) }}</h4>
<p>Last backup on: {{ formatDate(entity.updatedAt) }}</p>
</div>
<div class="settings-container__backup-status">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
information is collected.
</p>
</div>
<settings-button title="Backups" @click="$emit('open:backups')" />
<settings-button title="Settings backup" @click="$emit('open:backups')" />
<!-- <base-select
:select="selecTimer"
title="Auto-lock timer"
Expand Down

0 comments on commit 10cd0ca

Please sign in to comment.