Add padding to when genai popup shows

This commit is contained in:
Nicolas Mowen 2025-10-08 05:10:03 -06:00
parent 7a8f93e9f5
commit 8b10c9a3bf

View File

@ -466,7 +466,7 @@ export function RecordingView({
return mainCameraReviewItems.find(
(rev) =>
rev.start_time < currentTime &&
rev.start_time - REVIEW_PADDING < currentTime &&
rev.end_time &&
currentTime < rev.end_time,
);