This commit is contained in:
Daniel Shleifman
2021-06-26 22:28:50 +03:00
parent 9b521ef06c
commit e2241cf7fd
8 changed files with 22 additions and 13 deletions

View File

@@ -12,7 +12,7 @@ export default function TorrentList({ isOffline, isLoading, torrents }) {
{isOffline ? (
<NoServerConnection />
) : isLoading ? (
<CircularProgress />
<CircularProgress color='secondary' />
) : (
!torrents.length && <AddFirstTorrent />
)}