Skip to content
Merged
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 @@ -123,7 +123,9 @@ export function FlipperBoard() {
className='w-full bg-gradient-to-r from-gray-800 to-gray-900 hover:from-gray-700 hover:to-gray-800 dark:from-gray-700 dark:to-gray-800 dark:hover:from-gray-600 dark:hover:to-gray-700 text-white'>
{flipTx.inBestBlockProgress ? 'Flipping...' : 'Flip Value!'}
</Button>
{!isMapped && <p className='text-sm text-muted-foreground'>Connect and map your account to see the value!</p>}
{isMapped === false && (
<p className='text-sm text-muted-foreground'>Connect and map your account to see the value!</p>
)}
</div>
</CardContent>
</Card>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@ export function FlipperBoard() {
className='w-full bg-gradient-to-r from-gray-800 to-gray-900 hover:from-gray-700 hover:to-gray-800 dark:from-gray-700 dark:to-gray-800 dark:hover:from-gray-600 dark:hover:to-gray-700 text-white'>
{flipTx.inBestBlockProgress ? 'Flipping...' : 'Flip Value!'}
</Button>
{!isMapped && <p className='text-sm text-muted-foreground'>Connect and map your account to see the value!</p>}
{isMapped === false && (
<p className='text-sm text-muted-foreground'>Connect and map your account to see the value!</p>
)}
</div>
</CardContent>
</Card>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function NonMappedAccountAlert() {
<AlertTitle>Account Not Mapped</AlertTitle>
<AlertDescription>
<p className='mb-2'>
Your account needs to be mapped before interacting with ink! v6 contracts on this network.
Your account needs to be mapped before interacting with Solidity contracts on this network.
</p>
<div className='mt-2 flex items-center'>
<MapAccountButton variant='default' onSuccess={handleMappingSuccess} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ export function StorageBoard() {
{storeTx.inBestBlockProgress ? 'Updating...' : 'Update Value'}
</Button>
</div>
{!isMapped && <p className='text-sm text-muted-foreground'>Connect and map your account to see the value!</p>}
{isMapped === false && (
<p className='text-sm text-muted-foreground'>Connect and map your account to see the value!</p>
)}
</div>
</CardContent>
</Card>
Expand Down