Fix pinch zoom not working on resources

pull/2830/head
Kamran Ahmed 2 years ago
parent 80b11c91af
commit 117dc41540
  1. 5
      pages/[roadmap]/interactive.tsx

@ -53,11 +53,6 @@ export function InteractiveRoadmapRenderer(props: RoadmapProps) {
}
function clickListener(event: MouseEvent) {
const viewPortMeta = document.querySelector('meta[name=viewport]');
if (viewPortMeta) {
viewPortMeta.setAttribute('content', "initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0");
}
const targetGroup = (event?.target as HTMLElement)?.closest('g');
const groupId = targetGroup?.dataset?.groupId;
if (!targetGroup || !groupId) {

Loading…
Cancel
Save