Added missing semicolon

This commit is contained in:
Greg 2021-08-30 11:00:54 -06:00 committed by GitHub
parent 7276a4e489
commit eaed316450
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ export const withRestApi = {
getSystemEnvironment: async () => {
const response = await client.get( systemStatusEndpoint );
if ( response.data.environment ) {
return response.data.environment
return response.data.environment;
} else {
return;
}