Skip to content

Commit 53362ef

Browse files
Potential fix for code scanning alert no. 15: Use of externally-controlled format string
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent fbb803a commit 53362ef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/lib/security/backfill-password-history.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export async function backfillUserPasswordHistory(userId: string): Promise<boole
130130

131131
return true
132132
} catch (error) {
133-
console.error(`Failed to backfill password history for user ${userId}:`, error)
133+
console.error('Failed to backfill password history for user %s:', userId, error)
134134
throw error
135135
}
136136
}

0 commit comments

Comments
 (0)