diff --git a/src/components/FeedItemMenu.vue b/src/components/FeedItemMenu.vue index b21f8445d..e25e356cf 100644 --- a/src/components/FeedItemMenu.vue +++ b/src/components/FeedItemMenu.vue @@ -86,12 +86,13 @@ export default { body: this.$t('components.tipRecords.TipRecord.claimBodySuccess'), }); this.resolve(); - } catch (e) { + } catch (error) { await this.$store.dispatch('modals/open', { name: 'failure', title: this.$t('components.tipRecords.TipRecord.claimTitle'), body: this.$t('components.tipRecords.TipRecord.claimBodyFailure'), }); + console.error(error); } }, async pinOrUnPinTip() { diff --git a/src/components/SendComment.vue b/src/components/SendComment.vue index 64710f987..e10e1c74d 100644 --- a/src/components/SendComment.vue +++ b/src/components/SendComment.vue @@ -15,7 +15,6 @@