private void HandleInsertFailure(string error)
 {
     SavePendingRecord();
     _loadingImg.SetActive(false);
     _panelNotification?.NotifyFailure(_saveRecordFailureMsg);
     HideInput();
     Debug.LogError(error);
 }
 private void DisplayServerError(string error)
 {
     _loadingImg.SetActive(false);
     Instantiate(_errorMsg, _entriesGroup.transform);
     _panelNotification?.NotifyFailure(_failToConnectMsg);
 }