From 49b3e62c3086d408bd75c74d5371544d5a6f1186 Mon Sep 17 00:00:00 2001 From: Diego Cohen Date: Tue, 19 Nov 2024 15:37:05 -0500 Subject: [PATCH] Fix prop name in confirmation getServerSideProps --- pages/hold/confirmation/[id].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/hold/confirmation/[id].tsx b/pages/hold/confirmation/[id].tsx index 00d2c8055..51180783d 100644 --- a/pages/hold/confirmation/[id].tsx +++ b/pages/hold/confirmation/[id].tsx @@ -61,7 +61,7 @@ export async function getServerSideProps({ query }) { const { pickupLocation } = query return { props: { - isEdd: pickupLocation === "edd", + isEDD: pickupLocation === "edd", }, } }