Refactor API service functions for improved error handling and code consistency
- Updated signUpApi, deleteZonesApi, getZonesApi, setZonesApi, and other API functions to enhance error logging with echo.error statements. - Reformatted function parameters for better readability. - Removed unnecessary comments and console logs. - Ensured consistent error messages across all API functions. - Improved code structure for better maintainability.
This commit is contained in:
@@ -39,7 +39,9 @@ const ZoneProperties: React.FC = () => {
|
||||
} else {
|
||||
// console.log(response);
|
||||
}
|
||||
} catch (error) {}
|
||||
} catch (error) {
|
||||
echo.error("Failed to set zone view");
|
||||
}
|
||||
}
|
||||
|
||||
function handleEditView() {
|
||||
|
||||
Reference in New Issue
Block a user