It looks like your application is making a request to http://localhost:3000/api/v2/secretkey/getSourceNamesByPipelineIDs on page load, and the API is returning a 400 Bad Request with a "message": "data not found !!". Your frontend is likely displaying this message in a popup when it receives an error response. Here’s how you can prevent it:
Debug the API Request Since the API returns a 400 Bad Request, check the payload being sent in the request. Make sure that: ->The request body contains the correct pipelineID or any required parameters. ->The backend is expecting the correct data format.
Handle the Error Gracefully in the Frontend Modify your frontend error handling to suppress the popup when the error message is "data not found !!", or show the popup only under certain conditions.