Skip to content

Commit

Permalink
remove credential list shimmer
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkbee1 committed Dec 4, 2024
1 parent 66f4977 commit 708b24a
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,7 @@ class _HomeCredentialsListPageState extends State<HomeCredentialsListPage>
message = messageHandler.getMessage(context, messageHandler);
}

if (state.status == CredentialsStatus.loading) {
return const CredentialListShimmer();
} else if (state.status == CredentialsStatus.error) {
if (state.status == CredentialsStatus.error) {
return ErrorView(message: message, onTap: onRefresh);
} else {
return HomeCredentialCategoryList(
Expand Down

0 comments on commit 708b24a

Please sign in to comment.