Skip to content

Commit

Permalink
Menu dot fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SagivOnoApps committed Jul 15, 2020
1 parent a1a4660 commit bd59951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Main/ScanHomeHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const ScanHomeHeader: FunctionComponent<ScanHomeHeaderProps> = ({ isRTL, languag
AsyncStorage.getItem(MENU_DOT_LAST_SEEN)
.then((res) => {
if (res) {
if (res <= SHOW_DOT_BY_BUILD_NUMBER) setShowDot(true);
if (res < SHOW_DOT_BY_BUILD_NUMBER) setShowDot(true);
} else {
setShowDot(true);
}
Expand Down

0 comments on commit bd59951

Please sign in to comment.