Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build errors due to undefined access #764

Merged
merged 2 commits into from
Aug 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions client/src/app/bookings/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,20 @@ const BookingPage = async () => {
* We assume there will be only one based on the way {@link LodgeInformation}
* is set up in sanity
*/
const lodgeInfoSingleton = lodgeInfo[0]
const lodgeInfoSingleton: LodgeInformation | undefined =
// However this can only be a singleton if the list is non-empty
lodgeInfo.length > 0 ? lodgeInfo[0] : undefined

const RenderedContent = () => {
return (
lodgeInfoSingleton.information && (
lodgeInfoSingleton?.information && (
<PortableText value={lodgeInfoSingleton.information} />
)
)
}

const processedImages =
lodgeInfoSingleton.imageUrls?.map((item) =>
lodgeInfoSingleton?.imageUrls?.map((item) =>
item.url
? new SanityImageUrl(item.url).autoFormat().width(700).toString()
: ""
Expand Down
Loading