styling fixes

This commit is contained in:
Michael Freno
2025-12-30 15:10:25 -05:00
parent 17ea918081
commit 48bf4607b8
4 changed files with 7 additions and 4 deletions

View File

@@ -416,7 +416,10 @@ export function LeftBar() {
onError={(e) => {
// Fallback to full banner if thumbnail doesn't exist
const img = e.currentTarget;
if (img.src !== (post.banner_photo || "/blueprint.jpg")) {
if (
img.src !==
(post.banner_photo || "/blueprint.jpg")
) {
img.src = post.banner_photo || "/blueprint.jpg";
}
}}