Skip to content

Commit

Permalink
Hardcoding vars into react
Browse files Browse the repository at this point in the history
  • Loading branch information
alemalvarez committed Apr 3, 2024
1 parent 0baf365 commit 77a8c79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/main/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import Body from './Body';

function App() {
const [isAnimating] = useState(false);
const domain = process.env.REACT_APP_DOMAIN;
const clientId = process.env.REACT_APP_CLIENT_ID;
const domain = 'dev-igx0eff32n6l7436.us.auth0.com'; // Hardcoded for deployment. Will try to make it work from .env tho
const clientId = 'l9uS8Pp86tE0Oy3G75wNgvfIOUXxhCyh';

return (
<Auth0Provider domain={domain} clientId={clientId} redirectUri={window.location.origin}>
Expand Down

0 comments on commit 77a8c79

Please sign in to comment.