Skip to content

Commit 2e7fcf5

Browse files
Fix boolean check mistake
1 parent 1398efb commit 2e7fcf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotcom-rendering/src/components/InteractiveBlockComponent.importable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ export const InteractiveBlockComponent = ({
462462
data-alt={alt} // for compatibility with custom boot scripts
463463
data-testid={`interactive-element-${encodeURI(alt ?? '')}`}
464464
data-spacefinder-role={role}
465-
onTouchStart={!isApps ? onTouchStart : undefined}
465+
onTouchStart={isApps ? onTouchStart : undefined}
466466
onTouchEnd={isApps ? onTouchEnd : undefined}
467467
>
468468
{!loaded && (

0 commit comments

Comments
 (0)