-
+
You are not listed as an officer for any {OBJECT_NAME_PLURAL} yet.
If you would like to request access for an existing{' '}
{OBJECT_NAME_SINGULAR}, please send your name, PennKey, and{' '}
diff --git a/frontend/components/Settings/TicketsTab/index.tsx b/frontend/components/Settings/TicketsTab/index.tsx
index 650a2d6be..ba74c9884 100644
--- a/frontend/components/Settings/TicketsTab/index.tsx
+++ b/frontend/components/Settings/TicketsTab/index.tsx
@@ -257,7 +257,7 @@ const TicketsTab = ({ className, userInfo }: TicketsTabProps): ReactElement => {
<>
-
+
No tickets yet! Browse events to find tickets{' '}
here.
diff --git a/frontend/components/Tickets/CartTickets.tsx b/frontend/components/Tickets/CartTickets.tsx
index f593b3097..edab5ce80 100644
--- a/frontend/components/Tickets/CartTickets.tsx
+++ b/frontend/components/Tickets/CartTickets.tsx
@@ -313,7 +313,7 @@ const CartTickets: React.FC = ({ tickets, soldOut }) => {
}}
>
Your cart is empty
-
+
To add tickets to your cart, visit the event page and select the
tickets you wish to purchase. If you believe this is an error,
please contact support at
diff --git a/frontend/components/Tickets/PaymentForm.tsx b/frontend/components/Tickets/PaymentForm.tsx
index d45d5ebad..8333ace82 100644
--- a/frontend/components/Tickets/PaymentForm.tsx
+++ b/frontend/components/Tickets/PaymentForm.tsx
@@ -36,7 +36,7 @@ const Payment: React.FC = ({
return (
<>
diff --git a/frontend/components/common/Typography.tsx b/frontend/components/common/Typography.tsx
index ed6806d36..c3c467732 100644
--- a/frontend/components/common/Typography.tsx
+++ b/frontend/components/common/Typography.tsx
@@ -7,11 +7,11 @@ import {
WHITE,
} from '../../constants/colors'
-export const Text = styled.p<{ isGray?: boolean; color?: string }>`
+export const Text = styled.p<{ $isGray?: boolean; color?: string }>`
font-size: 1rem;
margin-bottom: 1rem;
line-height: 1.5;
- ${({ isGray }) => (isGray ? `color: ${CLUBS_GREY};` : '')}
+ ${({ $isGray }) => ($isGray ? `color: ${CLUBS_GREY};` : '')}
${({ color }) => (color ? `color: ${color};` : '')}
`