diff --git a/ui/v2/src/components/Wall/WallItem.tsx b/ui/v2/src/components/Wall/WallItem.tsx index 05da210d0..0cdbc4b46 100644 --- a/ui/v2/src/components/Wall/WallItem.tsx +++ b/ui/v2/src/components/Wall/WallItem.tsx @@ -31,7 +31,7 @@ export const WallItem: FunctionComponent = (props: IWallItemProp const [tags, setTags] = useState([]); const config = StashService.useConfiguration(); const videoHoverHook = VideoHoverHook.useVideoHover({resetOnMouseLeave: true}); - const showTextContainer = !!config.data ? config.data.configuration.interface.wallShowTitle : true; + const showTextContainer = !!config.data && !!config.data.configuration ? config.data.configuration.interface.wallShowTitle : true; function onMouseEnter() { VideoHoverHook.onMouseEnter(videoHoverHook);