mirror of
https://github.com/LBRYFoundation/Watch-on-LBRY.git
synced 2025-08-23 17:47:26 +00:00
🍙 added back button to import/generate profile view
This commit is contained in:
parent
caa0d196ed
commit
deed10423a
1 changed files with 6 additions and 1 deletions
|
@ -49,7 +49,12 @@ function WatchOnLbryPopup(params: { profile: Awaited<ReturnType<typeof getProfil
|
|||
}
|
||||
</section>
|
||||
</header>
|
||||
: <header><a className='button filled' onClick={() => updateRoute('profile')} href="#profile">Your Profile</a>
|
||||
: <header>
|
||||
{
|
||||
popupRoute === 'profile'
|
||||
? <a onClick={() => updateRoute('')} className="button filled">⇐ Back</a>
|
||||
: <a className='button filled' onClick={() => updateRoute('profile')} href="#profile">Your Profile</a>
|
||||
}
|
||||
</header>
|
||||
}
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue