Skip to content

Commit

Permalink
fix(web) accurate error message for embeddedlistsearch (datahub-proje…
Browse files Browse the repository at this point in the history
  • Loading branch information
jayacryl authored and PeteMango committed Mar 3, 2025
1 parent 822eb81 commit 3e60604
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,8 @@ export const EmbeddedListSearch = ({

let errorMessage = '';
if (error) {
errorMessage =
'Failed to load results! An unexpected error occurred. This may be due to a timeout when fetching lineage results.';
console.error('Failed to load results', error);
errorMessage = `Failed to load results due to an unexpected error. Please try again later.`;
}

return (
Expand Down

0 comments on commit 3e60604

Please sign in to comment.