fix: rename trpc route for get booking

This commit is contained in:
Michael Zetterberg
2025-04-14 15:53:51 +02:00
parent 8a0b917824
commit af65fbf7f4
6 changed files with 17 additions and 25 deletions

View File

@@ -136,7 +136,7 @@ export const getPackages = cache(async function getMemoizedPackages(
export const getBookingConfirmation = cache(
async function getMemoizedBookingConfirmation(confirmationNumber: string) {
return serverClient().booking.confirmation({ confirmationNumber })
return serverClient().booking.get({ confirmationNumber })
}
)