Skip to content

Commit 69a1cd0

Browse files
committed
fix dependency warning
1 parent b7940b7 commit 69a1cd0

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

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

Lines changed: 5 additions & 4 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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"react-dom": "^18.3.1"
1515
},
1616
"devDependencies": {
17+
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
1718
"react-scripts": "^5.0.1"
1819
},
1920
"scripts": {

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ 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
20+
redirectUri: 'http://localhost:3000/redirect', // Points to window.location.origin. You must register this URI on Azure Portal/App Registration.
1821
postLogoutRedirectUri: '/', // Indicates the page to navigate after logout.
1922
navigateToLoginRequestUrl: false, // If "true", will navigate back to the original request location before processing the auth code response.
2023
},

0 commit comments

Comments
 (0)