Skip to content

Commit

Permalink
Updating font-boldnes
Browse files Browse the repository at this point in the history
  • Loading branch information
fforres committed Aug 17, 2024
1 parent c27446a commit e35c654
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion emails/templates/tickets/event-invitation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const EventInvitation = ({
Ingresa con tu correo{" "}
<CodeInline className="font-regular italic">{userEmail}</CodeInline>
, conoce los detalles y completa tus datos para que podamos{" "}
<span className="font-medium">confirmar tu asistencia</span>.
<span className="font-semibold">confirmar tu asistencia</span>.
</Text>

<Text className="mb-4 text-center">
Expand Down
2 changes: 1 addition & 1 deletion emails/templates/tickets/waitlist-accepted.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const WaitlistAccepted = ({
Ingresa con tu correo{" "}
<CodeInline className="font-regular italic">{userEmail}</CodeInline>
, conoce los detalles y completa tus datos para que podamos{" "}
<span className="font-medium">confirmar tu asistencia</span>.
<span className="font-semibold">confirmar tu asistencia</span>.
</Text>

<Text className="mb-4 text-center">
Expand Down
2 changes: 1 addition & 1 deletion src/schema/purchaseOrder/actions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ const createStripePaymentIntent = async ({
});
}

logger.info("🚨 Attempting to create payment on platform", {
logger.info("Attempting to create payment on platform", {
items,
purchaseOrderId,
});
Expand Down
2 changes: 1 addition & 1 deletion src/schema/userTickets/mutations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ builder.mutationField("claimUserTicket", (t) =>
};
} catch (e: unknown) {
if (transactionError) {
logger.error("🚨Transaction error", transactionError);
logger.error("Error claiming usertickets", transactionError);

return {
error: true as const,
Expand Down

0 comments on commit e35c654

Please sign in to comment.