Skip to content

Commit

Permalink
fix: fix null results
Browse files Browse the repository at this point in the history
  • Loading branch information
stringhandler committed Oct 11, 2024
1 parent 2657381 commit 03f2cbc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const P2PoolStats = () => {
const p2poolStats = useP2poolStatsStore((s) => s);
const p2poolSha3Stats = useP2poolStatsStore((s) => s?.sha3x_stats);
const p2poolRandomXStats = useP2poolStatsStore((s) => s?.randomx_stats);
const fetchP2pStats = useP2poolStatsStore((s) => s.fetchP2poolStats);
const fetchP2pStats = useP2poolStatsStore((s) => s?.fetchP2poolStats);

const p2poolSquad = p2poolSha3Stats?.squad?.name;
const p2poolSha3MinersCount = p2poolSha3Stats?.num_of_miners;
Expand Down

0 comments on commit 03f2cbc

Please sign in to comment.