Skip to content

Commit 6b95609

Browse files
committed
Updating font-boldnes
1 parent c27446a commit 6b95609

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

emails/templates/tickets/event-invitation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const EventInvitation = ({
5757
Ingresa con tu correo{" "}
5858
<CodeInline className="font-regular italic">{userEmail}</CodeInline>
5959
, conoce los detalles y completa tus datos para que podamos{" "}
60-
<span className="font-medium">confirmar tu asistencia</span>.
60+
<span className="font-semibold">confirmar tu asistencia</span>.
6161
</Text>
6262

6363
<Text className="mb-4 text-center">

emails/templates/tickets/waitlist-accepted.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const WaitlistAccepted = ({
5757
Ingresa con tu correo{" "}
5858
<CodeInline className="font-regular italic">{userEmail}</CodeInline>
5959
, conoce los detalles y completa tus datos para que podamos{" "}
60-
<span className="font-medium">confirmar tu asistencia</span>.
60+
<span className="font-semibold">confirmar tu asistencia</span>.
6161
</Text>
6262

6363
<Text className="mb-4 text-center">

src/schema/purchaseOrder/actions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ const createStripePaymentIntent = async ({
281281
});
282282
}
283283

284-
logger.info("🚨 Attempting to create payment on platform", {
284+
logger.info("Attempting to create payment on platform", {
285285
items,
286286
purchaseOrderId,
287287
});

src/schema/userTickets/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export const validateUserDataAndApproveUserTickets = async ({
212212
search: {
213213
userIds: [userId],
214214
eventIds: [eventId],
215-
approvalStatus: ["pending"],
215+
approvalStatus: ["gifted"],
216216
},
217217
});
218218

src/schema/userTickets/mutations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ builder.mutationField("claimUserTicket", (t) =>
553553
};
554554
} catch (e: unknown) {
555555
if (transactionError) {
556-
logger.error("🚨Transaction error", transactionError);
556+
logger.error("Error claiming usertickets", transactionError);
557557

558558
return {
559559
error: true as const,

0 commit comments

Comments
 (0)