Skip to content

Commit

Permalink
Merge pull request #79 from adobecom/MWPW-132159-2
Browse files Browse the repository at this point in the history
feat(MWPW-132159): Reduce payload size for collection endpoint pt 2
  • Loading branch information
sanrai authored Jun 30, 2023
2 parents 3ac136d + c0c28b2 commit 7459678
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/app.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Chimera UI Libraries - Build 6/30/2023, 24:10:16
* Chimera UI Libraries - Build 6/30/2023, 01:43:04
*
*/
/******/ (function(modules) { // webpackBootstrap
Expand Down Expand Up @@ -6773,7 +6773,7 @@ var Container = function Container(props) {
hash = (hash + (s.charCodeAt(i) - 97 + 1) * basePower) % MOD;
basePower = basePower * BASE % MOD;
}
return btoa((hash + MOD) % MOD);
return ((hash + MOD) % MOD).toString(36);
}

/**
Expand Down
4 changes: 2 additions & 2 deletions dist/main.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/main.source.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion react/src/js/components/Consonant/Container/Container.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ const Container = (props) => {
hash = (hash + (s.charCodeAt(i) - 97 + 1) * basePower) % MOD;
basePower = (basePower * BASE) % MOD;
}
return btoa((hash + MOD) % MOD);
return ((hash + MOD) % MOD).toString(36);
}

/**
Expand Down

0 comments on commit 7459678

Please sign in to comment.