Skip to content

Commit

Permalink
fix(webapp): added validation when aa not response
Browse files Browse the repository at this point in the history
  • Loading branch information
AngeloCG97 committed Jun 30, 2023
1 parent 44a44bd commit 5a3f445
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const MembersList = ({ searchValue }: Props) => {
return <LoadingContainer />;
}

if (isError) {
if (isError && data.length === 0) {
return (
<MessageContainer
title="Error loading member information"
Expand Down

0 comments on commit 5a3f445

Please sign in to comment.