Skip to content

Instantly share code, notes, and snippets.

@balsikandar
Created May 1, 2021 19:14
Show Gist options
  • Select an option

  • Save balsikandar/741be09c1ef1cf6e229687035a14bb7a to your computer and use it in GitHub Desktop.

Select an option

Save balsikandar/741be09c1ef1cf6e229687035a14bb7a to your computer and use it in GitHub Desktop.
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