Skip to content
Snippets Groups Projects
Commit de22f493 authored by Dima Rifai's avatar Dima Rifai
Browse files

Issue #398 - Fix styling of error message

parent 437ffd3b
No related branches found
No related tags found
1 merge request!498Delrifai/#398 add operation details balance history
......@@ -149,12 +149,12 @@ export default function BalanceHistory() {
{/* Show Error Message if No Balance History and No Loading State */}
{!isAccountBalanceHistoryLoading && !accountBalanceHistory?.total_operations ? (
<div className="w-full my-4 text-black text-center">
<div className="w-full my-4 text-center">
No operations were found.
</div>
) : isAccountBalanceHistoryLoading ? (
<div className="flex justify-center text-center items-center">
<Loader2 className="animate-spin mt-1 text-black h-12 w-12 ml-3" />
<Loader2 className="animate-spin mt-1 h-12 w-12 ml-3" />
</div>
) : (
// Show the table when balance history exists
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment