Skip to content

Commit

Permalink
Last changes (currently deploying but not passing e2e)
Browse files Browse the repository at this point in the history
  • Loading branch information
augustocristian committed Mar 1, 2024
1 parent 5fc4e5a commit 97c29e4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ services:
environment:
AUTH_SERVICE_URL: http://${WIQ_EXTERNAL_DNS_NAME_OR_IP:-authservice}:8002
USER_SERVICE_URL: http://${WIQ_EXTERNAL_DNS_NAME_OR_IP:-userservice}:8001
HOST_IP: ${WIQ_EXTERNAL_DNS_NAME_OR_IP:-localhost}

webapp:
container_name: webapp-${teamname:-defaultASW}
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/components/AddUser.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React, { useState } from 'react';
import axios from 'axios';
import { Container, Typography, TextField, Button, Snackbar } from '@mui/material';

const apiEndpoint = process.env.REACT_APP_API_ENDPOINT || 'http://localhost:8000';
const apiEndpoint = process.env.REACT_APP_API_ENDPOINT;

const AddUser = () => {
const [username, setUsername] = useState('');
Expand Down

0 comments on commit 97c29e4

Please sign in to comment.