Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
behrang committed Oct 9, 2023
1 parent 9a74838 commit 6c1c4f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ErrorDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const ErrorDisplay = observer(({ model }: Props) => {
>
<img src={error} className='h-6 dark:hidden' />
<img src={errorDark} className='hidden h-6 dark:block' />
<p className='mx-1'>model.errorMessage</p>
<p className='mx-1'>{model.errorMessage}</p>
</div>
)
})
Expand Down
2 changes: 1 addition & 1 deletion src/Model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const depositCoinsFee = 0x76a14bbn
const unstakeTokensFee = 0x7f2b933n

const errorMessageTonAccess = 'Unable to access blockchain'
const errorMessageNetworkMismatch = 'Your wallet must also be on '
const errorMessageNetworkMismatch = 'Your wallet must be on '

type ActiveTab = 'stake' | 'unstake'

Expand Down

0 comments on commit 6c1c4f2

Please sign in to comment.