Skip to content

Commit

Permalink
fix: Fixes bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Hossein-Asadi committed Jan 14, 2025
1 parent b912f03 commit 89fd523
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/css/Theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
--background-color-lighter-40: #354fc8;
--background-color-lighter-40-glassy: rgba(53, 79, 200, 0.4);
--background-color-lighter-60: #7688e0;
--background-color-lighter-80: #d4daf4;
--background-color-lighter-80: #b6c2f7;
--background-color-lighter-90: #fdfdfe;

/*text*/
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/my-account/MyAccount.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const MyAccount = () => {

return (
<Typography variant="overline" sx={{ fontSize: 14 }} color="text.secondary">
Total: <span style={{ textDecoration: "line-through" }}>{total} T</span> 0 T
Total: {total !== 0 && <span style={{ textDecoration: "line-through" }}>{total} T</span>} 0 T
</Typography>
);
};
Expand Down

0 comments on commit 89fd523

Please sign in to comment.