From b6516d436118a1b930e748d5a2a35954f795d01c Mon Sep 17 00:00:00 2001 From: Noah Spannbauer Date: Mon, 20 Jan 2025 17:36:55 -0600 Subject: [PATCH] Refactoring --- app/src/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main.tsx b/app/src/main.tsx index c196fae..407dff8 100644 --- a/app/src/main.tsx +++ b/app/src/main.tsx @@ -7,7 +7,7 @@ import './index.css'; import '@noahspan/noahspan-components/noahspan-components.css'; import { AuthenticationResult, EventMessage, EventType, PublicClientApplication } from '@azure/msal-browser'; import { MsalProvider } from '@azure/msal-react'; -import { msalConfig } from './auth/msalConfig.ts'; +import { msalConfig } from './auth/msalConfig'; const msalInstance: PublicClientApplication = new PublicClientApplication(msalConfig); const accounts = msalInstance.getAllAccounts();