Skip to content

Commit

Permalink
Fix build errors due to undefined access (#764)
Browse files Browse the repository at this point in the history
* add undefined guard

* add length check for better static typing
  • Loading branch information
choden-dev authored Aug 19, 2024
1 parent ea8b816 commit bc752e7
Showing 1 changed file with 5 additions and 3 deletions.
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

0 comments on commit bc752e7

Please sign in to comment.