Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ const ProposeBanner = ({ refetch }: SpellUpgradeProps) => {
<div>
<h4 className="font-bold text-primary">New version available</h4>
<p className="text-sm">
Release 4.0.0 improves the the way in which DTFs are rebalanced. At
Release 4.0.0 improves the way in which DTFs are rebalanced. At
a high level, the new rebalance mechanism is able to consider the
entire basket at once instead of requiring individual 2-token
auctions to be proposed in advance and performed in isolation. See
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const useAuctions = () => {
return useContractWrite(tx)
}

// TODO: maybe unnecesary
// TODO: maybe unnecessary
const ConfirmAuction = () => {
const { isReady, write, hash, gas, validationError, isLoading } =
useAuctions()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const AmountsPreview = () => {
const usdAmount = useAtomValue(stakeAmountUsdAtom)
const stAmount = useAtomValue(stakeOutputAtom)
const ticker = useAtomValue(stRsrTickerAtom)
// Sometimes stAmount change as soon as the stake is successfull, and thats not the intended display
// Sometimes stAmount change as soon as the stake is successful, and thats not the intended display
const stAmountMemo = useMemo(() => stAmount, [!!stAmount])

return (
Expand Down