We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e2ad04 commit 57f9723Copy full SHA for 57f9723
1 file changed
src/util/encryption.ts
@@ -133,9 +133,7 @@ export async function makeConfidentialValue(
133
// Check environment-specific config first
134
if (keyConfig.environments && environmentId) {
135
/* eslint-disable @typescript-eslint/no-explicit-any */
136
- const envConfig = (keyConfig.environments as any[]).find(
137
- (env: any) => String(env.id) === String(environmentId),
138
- )
+ const envConfig = (keyConfig.environments as any[]).find((env: any) => String(env.id) === String(environmentId))
139
/* eslint-enable @typescript-eslint/no-explicit-any */
140
const ruleValue = envConfig?.rules?.[0]?.value
141
0 commit comments