expensify-common 2.0.176 → 2.0.177

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/Network.js +1 -1
  2. package/package.json +1 -1
package/dist/Network.js CHANGED
@@ -114,7 +114,7 @@ function Network(endpoint) {
114
114
  // If it does, we should use formData instead of parameters and update
115
115
  // the ajax settings accordingly
116
116
  Object.entries(parameters).forEach(([key, value]) => {
117
- if (!value) {
117
+ if (value === undefined) {
118
118
  return;
119
119
  }
120
120
  // Populate formData in case we need it
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expensify-common",
3
- "version": "2.0.176",
3
+ "version": "2.0.177",
4
4
  "author": "Expensify, Inc.",
5
5
  "description": "Expensify libraries and components shared across different repos",
6
6
  "homepage": "https://expensify.com",