Skip to content

Commit 9601f26

Browse files
authored
Update API endpoints for chat application
1 parent 7df471a commit 9601f26

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

chat-app/client/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ function App() {
1313
const [formChat, setFormChat] = useState({ ...initialForm });
1414
const [alert, setAlert] = useState("");
1515
const [messageType, setMessageType] = useState("");
16-
const port = "https://h1rnrhuug466tlnv24gymmi1.hosting.codeyourfuture.io/api";
17-
const port2 = "wss://h1rnrhuug466tlnv24gymmi1.hosting.codeyourfuture.io/api";
16+
const port = "https://backendchatapp.hosting.codeyourfuture.io/api";
17+
const port2 = "wss://backendchatapp.hosting.codeyourfuture.io/api";
1818

1919
const showNotification = (msg: string, type: string = "success") => {
2020
setAlert(msg);

0 commit comments

Comments
 (0)