Skip to content

Commit 8a856c2

Browse files
authored
suppress type error for release (#125)
1 parent 765ea51 commit 8a856c2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

configuration-wire/generate.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,10 @@ function hashAndEncode(jsonData: { precomputed: { response: any } }) {
4444
}
4545

4646
// Process each bandit
47-
for (const [banditKey, bandit] of Object.entries(
47+
for (const [banditKey, _bandit] of Object.entries(
4848
jsonData.precomputed.response.bandits
4949
)) {
50+
const bandit = _bandit as any;
5051
// Hash flag key with salt
5152
const hashedKey = createHash('md5')
5253
.update(salt + banditKey)

0 commit comments

Comments
 (0)