-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
confirmation page text changes for walkins
- Loading branch information
1 parent
1d6226c
commit 50a360b
Showing
4 changed files
with
32 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
// app/book/confirmation/page.tsx | ||
import BookingFormConfirmationPage from "@/components/src/client/routes/booking/formPages/BookingFormConfirmationPage"; | ||
import { FormContextLevel } from "@/components/src/types"; | ||
import React from "react"; | ||
|
||
const Role: React.FC = () => <BookingFormConfirmationPage />; | ||
const Role: React.FC = () => ( | ||
<BookingFormConfirmationPage formContext={FormContextLevel.FULL_FORM} /> | ||
); | ||
|
||
export default Role; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// app/walk-in/confirmation/page.tsx | ||
import BookingFormConfirmationPage from "@/components/src/client/routes/booking/formPages/BookingFormConfirmationPage"; | ||
import { FormContextLevel } from "@/components/src/types"; | ||
import React from "react"; | ||
|
||
const Role: React.FC = () => ( | ||
<BookingFormConfirmationPage formContext={FormContextLevel.WALK_IN} /> | ||
); | ||
|
||
export default Role; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters