From 775d98497dea83ae82e0df184bf97ae0a4d595e5 Mon Sep 17 00:00:00 2001 From: StevanFreeborn Date: Fri, 24 Jun 2022 15:54:21 -0500 Subject: [PATCH] updated client to use correct api url --- client/src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/App.js b/client/src/App.js index 4ec4478..ccfadae 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -55,7 +55,7 @@ export default class App extends Component { let url = '/api/seasons'; if (process.env.NODE_ENV === 'production') { - url = 'https://criminalminds-server.azurewebsites.net' + url; + url = 'https://criminalmindsapi.azurewebsites.net' + url; } const response = await fetch(url);