From 14d1d39e8e875766bfead37627697a964b934a51 Mon Sep 17 00:00:00 2001 From: Aakansha Doshi Date: Tue, 15 Feb 2022 16:31:14 +0530 Subject: [PATCH] chore: variable naming :) (#4782) --- src/components/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/App.tsx b/src/components/App.tsx index e6113d03..a524bd5e 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -2418,13 +2418,13 @@ class App extends React.Component { this.lastPointerUp!, this.state, ); - const LastPointerUpHittingLinkIcon = isPointHittingLinkIcon( + const lastPointerUpHittingLinkIcon = isPointHittingLinkIcon( this.hitLinkElement!, this.state, [lastPointerUpCoords.x, lastPointerUpCoords.y], this.isMobile, ); - if (lastPointerDownHittingLinkIcon && LastPointerUpHittingLinkIcon) { + if (lastPointerDownHittingLinkIcon && lastPointerUpHittingLinkIcon) { const url = this.hitLinkElement.link; if (url) { let customEvent;