Skip to content

Commit 6dac4b7

Browse files
committed
fix missing dependency
1 parent f799a0d commit 6dac4b7

3 files changed

Lines changed: 34 additions & 7 deletions

File tree

1-Authentication/1-sign-in-react/SPA/package-lock.json

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

1-Authentication/1-sign-in-react/SPA/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"react-dom": "^18.3.1"
1515
},
1616
"devDependencies": {
17-
"@babel/plugin-proposal-private-property-in-object": "^7.21.0",
17+
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
1818
"react-scripts": "5.0.1"
1919
},
2020
"scripts": {
@@ -30,7 +30,9 @@
3030
]
3131
},
3232
"jest": {
33-
"transformIgnorePatterns": ["node_modules/(?!(@azure/msal-browser|@azure/msal-react)/)"]
33+
"transformIgnorePatterns": [
34+
"node_modules/(?!(@azure/msal-browser|@azure/msal-react)/)"
35+
]
3436
},
3537
"browserslist": {
3638
"production": [

1-Authentication/1-sign-in-react/SPA/src/authConfig.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ import { LogLevel } from '@azure/msal-browser';
1313

1414
export const msalConfig = {
1515
auth: {
16-
clientId: 'Enter_the_Application_Id_Here', // This is the ONLY mandatory field that you need to supply.
17-
authority: 'https://Enter_the_Tenant_Subdomain_Here.ciamlogin.com/', // Replace the placeholder with your tenant subdomain
16+
// clientId: 'Enter_the_Application_Id_Here', // This is the ONLY mandatory field that you need to supply.
17+
// authority: 'https://Enter_the_Tenant_Subdomain_Here.ciamlogin.com/', // Replace the placeholder with your tenant subdomain
18+
clientId: '94fc755a-af32-43f9-9ce6-5f86f2beb928', // This is the ONLY mandatory field that you need to supply.
19+
authority: 'https://TrialTenantkwFwHYij.ciamlogin.com//', // Replace the placeholder with your tenant subdomain
1820
redirectUri: '/', // Points to window.location.origin. You must register this URI on Azure Portal/App Registration.
1921
postLogoutRedirectUri: '/', // Indicates the page to navigate after logout.
2022
navigateToLoginRequestUrl: false, // If "true", will navigate back to the original request location before processing the auth code response.

0 commit comments

Comments
 (0)