Skip to content

Commit 57f9723

Browse files
committed
prettier
1 parent 1e2ad04 commit 57f9723

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/util/encryption.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,7 @@ export async function makeConfidentialValue(
133133
// Check environment-specific config first
134134
if (keyConfig.environments && environmentId) {
135135
/* eslint-disable @typescript-eslint/no-explicit-any */
136-
const envConfig = (keyConfig.environments as any[]).find(
137-
(env: any) => String(env.id) === String(environmentId),
138-
)
136+
const envConfig = (keyConfig.environments as any[]).find((env: any) => String(env.id) === String(environmentId))
139137
/* eslint-enable @typescript-eslint/no-explicit-any */
140138
const ruleValue = envConfig?.rules?.[0]?.value
141139

0 commit comments

Comments
 (0)