Skip to content

Commit

Permalink
Replace final circular progress loader (decred#655)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlyp authored Sep 11, 2017
1 parent c3a15af commit 8fe04f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/views/AccountsPage/Accounts/List.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import CircularProgress from "material-ui/CircularProgress";
import Header from "../../../Header";
import AccountRow from "./AccountRow";
import DecredLoading from "../../../DecredLoading";
import KeyBlueButton from "../../../KeyBlueButton";
import "../../../../style/AccountsPage.less";

Expand Down Expand Up @@ -88,7 +88,7 @@ const AccountsList = ({

<div className="account-content">
{isLoading ? (
<CircularProgress className="account-loading" size={125} thickness={6}/>
<DecredLoading/>
) : (
<div className="account-content-nest">
{accounts.map(account => (
Expand Down

0 comments on commit 8fe04f8

Please sign in to comment.