fixed mismatch of bg color for success page (#1597)
This commit is contained in:
parent
8f6f34931b
commit
8de822500c
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ export default function Success(props: inferSSRProps<typeof getServerSideProps>)
|
|||
|
||||
return (
|
||||
(isReady && (
|
||||
<div className="h-screen bg-neutral-50 dark:bg-neutral-900" data-testid="success-page">
|
||||
<div className="h-screen bg-neutral-100 dark:bg-neutral-900" data-testid="success-page">
|
||||
<HeadSeo
|
||||
title={needsConfirmation ? t("booking_submitted") : t("booking_confirmed")}
|
||||
description={needsConfirmation ? t("booking_submitted") : t("booking_confirmed")}
|
||||
|
|
Loading…
Reference in a new issue