Skip to content

Commit

Permalink
Delete timers instead of delete data
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTeaCat committed Jul 10, 2022
1 parent 4e1802b commit c319591
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/SettingsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,19 @@
<section class="settings-group delete-data">
<h2 class="section-title">Your Data</h2>
<p>
Your data is kept on your device only. For information on how we use your data, see our
Your timers are kept on your device only. For information on how we use your data, see our
<a class="link" href="https://twotwelve.uk/legal/privacy/" target="_blank">Privacy Policy</a> and
<a class="link" href="https://twotwelve.uk/legal/cookies/" target="_blank">Cookie Policy</a>.
</p>
<form class="delete-data-form">
<button
class="delete-data-button button"
type="button"
:aria-label="deleteUserDataConfirmState ? 'Confirm' : 'Delete Your Data'"
:aria-label="deleteUserDataConfirmState ? 'Confirm' : 'Delete Your Timers'"
@click="deleteUserData"
>
<font-awesome-icon class="icon" :icon="['fas', 'exclamation-circle']" />
{{ deleteUserDataConfirmState ? 'Confirm' : 'Delete Your Data' }}
{{ deleteUserDataConfirmState ? 'Confirm' : 'Delete Your Timers' }}
</button>
<span v-if="deleteUserDataConfirmState" class="warning-message">
Are you sure? All of your timers will be lost forever!</span
Expand Down

0 comments on commit c319591

Please sign in to comment.