- Change block to return configure translation text

This commit is contained in:
Chris McGravey 2022-09-12 01:38:29 -05:00
parent 1c158f743c
commit 769f36fa8e

View File

@ -19,7 +19,11 @@ export default function CoinMarketCap({ service }) {
); );
if (!symbols || symbols.length === 0) { if (!symbols || symbols.length === 0) {
return <Widget error="Not tracking any symbols" />; return (
<Widget>
<Block value={t("coinmarketcap.configure")} />
</Widget>
);
} }
if (statsError) { if (statsError) {