Skip to content

Commit 04e0ba5

Browse files
authored
Update merch paid wording (#271)
1 parent ef70684 commit 04e0ba5

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

src/app/(membership)/merch-paid/page.tsx

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import Layout from '../MembershipLayout';
1414
import successAnimation from '../success.json';
1515
import { transformApiResponse } from '../merch-store/transform';
1616

17-
const WrapepdMerchPaid = () => {
17+
const WrappedMerchPaid = () => {
1818
return (
1919
<Suspense>
2020
<MerchPaid />
@@ -39,6 +39,7 @@ const MerchPaid = () => {
3939
metaLoader();
4040
// eslint-disable-next-line react-hooks/exhaustive-deps
4141
}, []);
42+
4243
if (Object.keys(merchList).length === 0) {
4344
return <Layout name="Merch Store"></Layout>;
4445
} else {
@@ -49,14 +50,22 @@ const MerchPaid = () => {
4950
<ModalHeader />
5051
<ModalBody className="flex flex-col items-center">
5152
<p className="text-center text-2xl font-bold">
52-
You&apos;ve successfully purchased a {merchList['item_name']}!
53+
Thanks for your order!
5354
</p>
5455
<Lottie
5556
animationData={successAnimation}
5657
loop={false}
5758
style={{ width: '10em' }}
5859
/>
59-
<p>You will be notified when your items are ready for pickup.</p>
60+
<p className="text-center">
61+
We&apos;ve received your order for a {merchList['item_name']}.
62+
You&apos;ll receive an email shortly with your order status and
63+
next steps.
64+
</p>
65+
<p className="mt-4 text-center text-xs text-gray-500">
66+
Don&apos;t see our email? Check your spam folder and make sure
67+
mail from <span className="font-medium">sales@acm.illinois.edu</span> isn&apos;t blocked.
68+
</p>
6069
</ModalBody>
6170
<ModalFooter />
6271
</ModalContent>
@@ -66,4 +75,4 @@ const MerchPaid = () => {
6675
}
6776
};
6877

69-
export default WrapepdMerchPaid;
78+
export default WrappedMerchPaid;

0 commit comments

Comments
 (0)