diff --git a/backend/src/graphql/union/QueryLinkResult.ts b/backend/src/graphql/union/QueryLinkResult.ts index 9434e2e2c..36483f302 100644 --- a/backend/src/graphql/union/QueryLinkResult.ts +++ b/backend/src/graphql/union/QueryLinkResult.ts @@ -1,7 +1,7 @@ import { createUnionType } from 'type-graphql' import { ContributionLink } from '@model/ContributionLink' -import { RedeemJwtLink } from '@/graphql/model/RedeemJwtLink' +import { RedeemJwtLink } from '@model/RedeemJwtLink' import { TransactionLink } from '@model/TransactionLink' export const QueryLinkResult = createUnionType({ diff --git a/frontend/src/graphql/queries.js b/frontend/src/graphql/queries.js index 5128e2cee..7fa9dc8aa 100644 --- a/frontend/src/graphql/queries.js +++ b/frontend/src/graphql/queries.js @@ -151,7 +151,7 @@ export const queryTransactionLink = gql` uuid } } - ... on DisbursementLink { + ... on RedeemJwtLink { amount memo code diff --git a/frontend/src/pages/TransactionLink.vue b/frontend/src/pages/TransactionLink.vue index 4b6e036d4..9446585de 100644 --- a/frontend/src/pages/TransactionLink.vue +++ b/frontend/src/pages/TransactionLink.vue @@ -1,3 +1,4 @@ +