diff --git a/core/src/auth/jwt/payloadtypes/DisburseJwtPayloadType.ts b/core/src/auth/jwt/payloadtypes/DisburseJwtPayloadType.ts index 16a029d2d..2940161df 100644 --- a/core/src/auth/jwt/payloadtypes/DisburseJwtPayloadType.ts +++ b/core/src/auth/jwt/payloadtypes/DisburseJwtPayloadType.ts @@ -30,7 +30,7 @@ export class DisburseJwtPayloadType extends JwtPayloadType { recipientAlias: string, ) { // eslint-disable-next-line @typescript-eslint/no-unsafe-call - super() + super('handshakeID') // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment this.tokentype = DisburseJwtPayloadType.DISBURSE_ACTIVATION_TYPE this.sendercommunityuuid = senderCommunityUuid diff --git a/core/src/auth/jwt/payloadtypes/RedeemJwtPayloadType.ts b/core/src/auth/jwt/payloadtypes/RedeemJwtPayloadType.ts index 7c9af45e2..7cc6674e7 100644 --- a/core/src/auth/jwt/payloadtypes/RedeemJwtPayloadType.ts +++ b/core/src/auth/jwt/payloadtypes/RedeemJwtPayloadType.ts @@ -22,7 +22,7 @@ export class RedeemJwtPayloadType extends JwtPayloadType { validUntil: string, ) { // eslint-disable-next-line @typescript-eslint/no-unsafe-call - super() + super('handshakeID') // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment this.tokentype = RedeemJwtPayloadType.REDEEM_ACTIVATION_TYPE this.sendercommunityuuid = senderCom