fixed warnings

This commit is contained in:
StevanFreeborn
2022-06-19 16:56:12 -05:00
parent 5b23da9392
commit 69698ec7d8
+2 -2
View File
@@ -52,9 +52,9 @@ export default class App extends Component {
async populateWeatherData() {
const url = '/api/seasons';
let url = '/api/seasons';
if (process.env.NODE_ENV == 'production') {
if (process.env.NODE_ENV === 'production') {
url = 'https://criminalminds-server.azurewebsites.net' + url;
}