[Glitch] Fix keyboard navigation in media modal after clicking image

Port be60c4585e to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Heath Dutton🕴️
2026-01-13 05:47:04 -05:00
committed by Claire
parent b4ed1e6c99
commit e14af55640

View File

@@ -85,7 +85,7 @@ export const MediaModal: FC<MediaModalProps> = forwardRef<
setIndex(newIndex);
setZoomedIn(false);
if (animate) {
void api.start({ x: `-${newIndex * 100}%` });
void api.start({ x: `calc(-${newIndex * 100}% + 0px)` });
}
},
[api, media.size],