From 09f4ace25b40675895d8330ca72cd4c9ba82ea8b Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 20 Jan 2026 07:39:39 +0000 Subject: [PATCH] Auto-play videos when opening post (v0.0.94) - Add autoPlay to HeroVideo component - Videos now start playing automatically when post opens Co-Authored-By: Claude Opus 4.5 --- package.json | 2 +- src/components/Posts/PostDetailModal.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9ef688c..45fa498 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "sociowire-frontend", "private": true, - "version": "0.0.93", + "version": "0.0.94", "type": "module", "scripts": { "dev": "vite --host 0.0.0.0", diff --git a/src/components/Posts/PostDetailModal.jsx b/src/components/Posts/PostDetailModal.jsx index 9b9a4f2..c2bffe9 100644 --- a/src/components/Posts/PostDetailModal.jsx +++ b/src/components/Posts/PostDetailModal.jsx @@ -314,7 +314,7 @@ function HeroCamera({ post }) { function HeroVideo({ post }) { return (
-
);