diff --git a/apps/scandic-web/components/Blocks/DynamicContent/Points/PointTransactions/PointTransactionList/PointTransactionRow/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Points/PointTransactions/PointTransactionList/PointTransactionRow/index.tsx index 30ecc509b..19c37fa13 100644 --- a/apps/scandic-web/components/Blocks/DynamicContent/Points/PointTransactions/PointTransactionList/PointTransactionRow/index.tsx +++ b/apps/scandic-web/components/Blocks/DynamicContent/Points/PointTransactions/PointTransactionList/PointTransactionRow/index.tsx @@ -41,7 +41,12 @@ export function PointTransactionRow({ ? formattedPoints : `${awardPoints > 0 ? "+" : "-"} ${formattedPoints}` - const canLinkBookingUrl = !balfwd && !nonTransactional + const canLinkBookingUrl = + !balfwd && + !nonTransactional && + !!transaction.attributes.bookingUrl && + (transaction.type === Transactions.rewardType.stay || + transaction.type === Transactions.rewardType.rewardNight) const description = getDescription(transaction, intl)