We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 765ea51 commit 8a856c2Copy full SHA for 8a856c2
configuration-wire/generate.ts
@@ -44,9 +44,10 @@ function hashAndEncode(jsonData: { precomputed: { response: any } }) {
44
}
45
46
// Process each bandit
47
- for (const [banditKey, bandit] of Object.entries(
+ for (const [banditKey, _bandit] of Object.entries(
48
jsonData.precomputed.response.bandits
49
)) {
50
+ const bandit = _bandit as any;
51
// Hash flag key with salt
52
const hashedKey = createHash('md5')
53
.update(salt + banditKey)
0 commit comments