@wlloyalty/wll-react-sdk 1.0.73 → 1.0.74
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.
- package/dist/native.js +1 -3
- package/dist/native.js.map +1 -1
- package/dist/web.js +1 -3
- package/dist/web.js.map +1 -1
- package/package.json +1 -1
package/dist/native.js
CHANGED
|
@@ -3656,9 +3656,7 @@ var Grid = function (_a) {
|
|
|
3656
3656
|
};
|
|
3657
3657
|
}
|
|
3658
3658
|
else {
|
|
3659
|
-
|
|
3660
|
-
var adjustedScreenWidth = SCREEN_WIDTH - 2 * GRID_GAP;
|
|
3661
|
-
var tileWidth = (adjustedScreenWidth - (columns - 1) * GRID_GAP) / columns;
|
|
3659
|
+
var tileWidth = (SCREEN_WIDTH - (columns + 1) * GRID_GAP) / columns;
|
|
3662
3660
|
return {
|
|
3663
3661
|
width: tileWidth,
|
|
3664
3662
|
marginBottom: GRID_GAP,
|