Skip to content

Commit 34a8270

Browse files
Fix: Potential fix for code scanning alert no. 56: 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 10776f5 commit 34a8270

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/features/beta-program/services/SurveyService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class SurveyService {
4949
});
5050
return response;
5151
} catch (error) {
52-
console.error(`Error submitting survey ${surveyId} responses:`, error);
52+
console.error('Error submitting survey %s responses:', surveyId, error);
5353
throw error;
5454
}
5555
}

0 commit comments

Comments
 (0)