Created
May 1, 2021 19:14
-
-
Save balsikandar/741be09c1ef1cf6e229687035a14bb7a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (pickupSelected && dropSelected) { | |
| gotoNextPage(); | |
| } else if (selectedTab === "PICKUP_POINT") { | |
| if (pickupSelected) { | |
| goToDrop(); | |
| } else { | |
| toast("Please select pickup location") | |
| } | |
| } else { | |
| if (dropSelected) { | |
| goToPickup(); | |
| } else { | |
| toast("Please select drop location") | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment