Skip to content

Commit

Permalink
Update HistoryTabContent.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
zkSoju committed Nov 21, 2022
1 parent 11c82ec commit 2ec5e87
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions components/HistoryTabContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ const HistoryTabContent = () => {
<BiHistory className="mr-4 rounded-sm border border-white/10 p-2 text-4xl text-white" />
<div className="flex flex-col">
<h4 className="text-white">History</h4>
<p className="text-xs text-white/50">Review previous swaps</p>
<p className="text-xs text-white/50">Review previous transactions</p>
</div>
</div>
{toastContent.title !== "" && (
{toastContent.title !== "" ? (
<div className="mb-2 flex w-full items-center justify-between rounded-sm border-l-2 border-sky-400 bg-gradient-to-r from-sky-400/5 to-transparent py-2 px-4">
<div className="flex items-center">
<BiShuffle className="mr-4 rounded-sm border border-white/10 p-1 text-2xl text-white" />
Expand All @@ -40,6 +40,10 @@ const HistoryTabContent = () => {
)}
</div>
</div>
) : (
<div className="flex h-40 w-full items-center justify-center">
<p className="text-white">No previous transactions</p>
</div>
)}

{/* <p className="text-white/50">Slippage Tolerance</p> */}
Expand Down

1 comment on commit 2ec5e87

@vercel
Copy link

@vercel vercel bot commented on 2ec5e87 Nov 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

dove-interface – ./

dove-interface-exp-table.vercel.app
dove-interface.vercel.app
dove-interface-git-main-exp-table.vercel.app

Please sign in to comment.