@@ -14,7 +14,7 @@ import Layout from '../MembershipLayout';
1414import successAnimation from '../success.json' ;
1515import { 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'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've received your order for a { merchList [ 'item_name' ] } .
62+ You'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't see our email? Check your spam folder and make sure
67+ mail from < span className = "font-medium" > sales@acm.illinois.edu</ span > isn'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