Skip to content

Commit 0a73bb7

Browse files
committed
fix: upgrade axios
1 parent 70248ef commit 0a73bb7

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"dependencies": {
4040
"@aws-sdk/client-s3": "^3.556.0",
4141
"@sentry/node": "^9.11.0",
42-
"axios": "^1.6.8",
42+
"axios": "^1.13.2",
4343
"bcryptjs": "^2.4.3",
4444
"chai-uuid": "^1.0.6",
4545
"cors": "^2.8.5",

server/services/JWTService.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class JWTService {
2323
try {
2424
const response = await axios.get(`${KEYCLOAK_URL}/realms/treetracker`);
2525
console.log(response);
26+
console.log(response.data);
2627
publicKey = response.data.public_key;
2728
} catch (error) {
2829
throw new HttpError(500, JSON.stringify(error?.response) || error);

0 commit comments

Comments
 (0)