-
+
diff --git a/frontend/src/mixins/copyLinks.js b/frontend/src/mixins/copyLinks.js
index 08b5a2e05..e48e273d1 100644
--- a/frontend/src/mixins/copyLinks.js
+++ b/frontend/src/mixins/copyLinks.js
@@ -1,3 +1,4 @@
+/* eslint-disable prettier/prettier */
export const copyLinks = {
props: {
link: { type: String, required: true },
@@ -26,17 +27,10 @@ export const copyLinks = {
navigator.clipboard
.writeText(
`${this.link}
- ${this.$store.state.firstName} ${this.$t('transaction-link.send_you')} ${
- this.amount
- } Gradido.
- "${this.memo}"
- ${this.$t('gdd_per_link.credit-your-gradido')} ${this.$t(
- 'gdd_per_link.validUntilDate',
- {
- date: this.$d(new Date(this.validUntil), 'short'),
- },
- )}
- ${this.$t('gdd_per_link.link-hint')}`,
+${this.$store.state.firstName} ${this.$t('transaction-link.send_you')} ${this.amount} Gradido.
+"${this.memo}"
+${this.$t('gdd_per_link.credit-your-gradido')} ${this.$t('gdd_per_link.validUntilDate', {date: this.$d(new Date(this.validUntil), 'short')})}
+${this.$t('gdd_per_link.link-hint')}`,
)
.then(() => {
this.toastSuccess(this.$t('gdd_per_link.link-and-text-copied'))