remove code from TransactionLink

This commit is contained in:
Ulf Gebhardt 2022-04-21 13:30:51 +02:00
parent febe57ce13
commit d836fb5375
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
2 changed files with 0 additions and 5 deletions

View File

@ -22,7 +22,6 @@ const mocks = {
const propsData = {
amount: '75',
code: 'c00000000c000000c0000',
link: 'http://localhost/redeem/c00000000c000000c0000',
holdAvailableAmount: '5.13109484759482747111',
id: 12,

View File

@ -74,7 +74,6 @@ export default {
},
props: {
amount: { type: String, required: true },
code: { type: String, required: true },
link: { type: String, required: true },
holdAvailableAmount: { type: String, required: true },
id: { type: Number, required: true },
@ -116,9 +115,6 @@ export default {
decay() {
return `${this.amount - this.holdAvailableAmount}`
},
link() {
return `${window.location.origin}/redeem/${this.code}`
},
},
}
</script>