Publishing App is not pushing through

I am trying to publish an App, but I am getting an error but I dont know where to begin investigating

Hi @Ezekiel_Gomez1

  1. Click “Copy on the publish error and check the detailed error message.
  2. Validate your expressions In your screenshot, change:
    gCaseNumber = AddRepatDate.ARD_txtbx_Search.Value.ToUpper()
    To
    If Not String.IsNullOrEmpty(AddRepatDate.ARD_txtbx_Search.Value) Then
    gCaseNumber = AddRepatDate.ARD_txtbx_Search.Value.ToUpper()
    End If
    3 Check for broken reference (deleted controls, variables, entities, or processes).
  3. Save the app and refresh App Studio then try publishing again.
  4. If it still fails, republish the connected process/workflow first then publish the app.

If solution works for you please mark as solution

Thanks & Happy Automation with UiPath

I tried logging out of UiPath and logging in again and I was able to publish and i can no longer recreate the error. If it happens again, ill try these suggestions. thanks