diff --git a/packages/pl-fe/src/components/status-reactions-bar.tsx b/packages/pl-fe/src/components/status-reactions-bar.tsx index fae8ecfe1..a7c5de8a1 100644 --- a/packages/pl-fe/src/components/status-reactions-bar.tsx +++ b/packages/pl-fe/src/components/status-reactions-bar.tsx @@ -41,6 +41,8 @@ const StatusReaction: React.FC = ({ reaction, status, obfuscate if (e.type !== 'touchstart') return; e.stopPropagation(); + + if ('vibrate' in navigator) navigator.vibrate(100); dispatch(openModal('REACTIONS', { statusId: status.id, reaction: reaction.name })); });