From b41e8fc4c2b9dc90d8fc18bf921ffb18dc8406ca Mon Sep 17 00:00:00 2001 From: Spythere Date: Thu, 2 Jun 2022 00:49:37 +0200 Subject: [PATCH] =?UTF-8?q?Usuni=C4=99to=20powiadomienie=20o=20migracji?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/App.vue b/src/App.vue index 4335eec..950684f 100644 --- a/src/App.vue +++ b/src/App.vue @@ -59,13 +59,6 @@
-
- {{ $t('app.migration-warning') }} - -
- @@ -139,7 +132,6 @@ export default defineComponent({ VERSION: packageInfo.version, updateModalVisible: false, hasReleaseNotes: false, - warningConfirmed: false, currentLang: 'pl', @@ -156,7 +148,6 @@ export default defineComponent({ created() { this.loadLang(); - this.warningConfirmed = StorageManager.getBooleanValue('warning-confirmed') || false; }, async mounted() { @@ -172,11 +163,6 @@ export default defineComponent({ }, methods: { - confirmWarning() { - this.warningConfirmed = true; - StorageManager.setBooleanValue('warning-confirmed', true); - }, - toggleUpdateModal() { this.updateModalVisible = !this.updateModalVisible; StorageManager.setBooleanValue('version_notes_read', true);