diff --git a/client/src/pages/VideoPage.tsx b/client/src/pages/VideoPage.tsx index c106dcb..b0dc98e 100644 --- a/client/src/pages/VideoPage.tsx +++ b/client/src/pages/VideoPage.tsx @@ -143,7 +143,9 @@ export default function VideoPage() { const newVideo = allVideos[newIndex]; if (newVideo) { - setLocation(`/video/${newVideo.id}`); + // Generate short ID for navigation + const shortId = newVideo.id.replace(/-/g, '').substring(0, 8); + setLocation(`/video/${shortId}`); } };