Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
artursapek committed Sep 23, 2024
1 parent a620f65 commit bf3b112
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wormhole-connect/src/views/v2/Redeem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const Redeem = () => {

const [claimError, setClaimError] = useState('');
const [isClaimInProgress, setIsClaimInProgress] = useState(false);
const [isTransferComplete, setIsTranferComplete] = useState(false);
const [isTransferComplete, setIsTransferComplete] = useState(false);
const [etaExpired, setEtaExpired] = useState(false);

const [isWalletSidebarOpen, setIsWalletSidebarOpen] = useState(false);
Expand Down Expand Up @@ -143,7 +143,7 @@ const Redeem = () => {
// When we see the transfer was complete for the first time,
// fire a transfer.success telemetry event.
if (isTxComplete && !isTransferComplete) {
setIsTranferComplete(true);
setIsTransferComplete(true);

config.triggerEvent({
type: 'transfer.success',
Expand Down

0 comments on commit bf3b112

Please sign in to comment.