Skip to content

Commit

Permalink
Update main.tsx
Browse files Browse the repository at this point in the history
в процессе проверки инструкции обнаружил различия в файлах в двух ветках, это критически для приложения, по истории видно, что новый код не добавлялся. 
Одну строчку добавил из ветки main в develop
Две строчки заменил в ветке main на две строчки из ветки develop
  • Loading branch information
Emil307 authored Aug 24, 2023
1 parent c8368b7 commit e41d2b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<BrowserRouter>
<Auth0Provider
domain="dev-txpc5harm481cb6o.us.auth0.com"
clientId="fOB3CWsgCnNLI5q7OMWe9DfWaAXOme2o"
domain={String(import.meta.env.VITE_AUTH0_DOMAIN)}
clientId={String(import.meta.env.VITE_AUTH0_CLIENT_ID)}
authorizationParams={{
redirect_uri: window.location.origin,
}}
Expand Down

0 comments on commit e41d2b2

Please sign in to comment.