Skip to content

Commit

Permalink
Add fallback value for name field
Browse files Browse the repository at this point in the history
fix: lint
  • Loading branch information
dukenv0307 committed Dec 28, 2023
1 parent 376bb95 commit 526120e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1348,4 +1348,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: c403784ee1fdf281bcc552696504207f3022cb66

COCOAPODS: 1.12.1
COCOAPODS: 1.12.1
2 changes: 1 addition & 1 deletion src/pages/iou/request/step/IOURequestStepWaypoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function IOURequestStepWaypoint({
lat: null,
lng: null,
address: waypointValue,
name: values.name,
name: values.name || null,
};
saveWaypoint(waypoint);
}
Expand Down

0 comments on commit 526120e

Please sign in to comment.