Skip to content

Commit

Permalink
Remove cursor (#3797)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattupham authored Aug 27, 2024
1 parent ae47654 commit d2b500c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/web/components/complex/portfolio/open-orders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const OpenOrders: FunctionComponent = () => {

return (
<div className="flex w-full flex-col py-3">
<div className="flex cursor-pointer items-center justify-between gap-3">
<div className="flex items-center justify-between gap-3">
<h6 className="py-3">{t("portfolio.openOrders")}</h6>
<LinkButton
href="/transactions?tab=orders"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const RecentActivity: FunctionComponent = observer(() => {

return (
<div className="flex w-full flex-col py-3">
<div className="flex cursor-pointer items-center justify-between gap-3">
<div className="flex items-center justify-between gap-3">
<h6 className="py-3">{t("portfolio.recentActivity")}</h6>
<LinkButton
href="/transactions"
Expand All @@ -72,6 +72,7 @@ export const RecentActivity: FunctionComponent = observer(() => {
topActivity.map((activity) => {
return (
<SwapRow
hash={activity.hash}
key={activity.id}
title={{
pending: t("transactions.swapping"),
Expand Down

0 comments on commit d2b500c

Please sign in to comment.