mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-30 08:51:24 +00:00
hide youtube transfer on web
This commit is contained in:
parent
30a9aac04b
commit
0c8a273a7b
2 changed files with 4 additions and 0 deletions
|
@ -108,7 +108,9 @@ function UserSignIn(props: Props) {
|
||||||
showUserVerification && <UserVerify />,
|
showUserVerification && <UserVerify />,
|
||||||
showSyncPassword && <SyncPassword />,
|
showSyncPassword && <SyncPassword />,
|
||||||
showChannelCreation && <UserFirstChannel />,
|
showChannelCreation && <UserFirstChannel />,
|
||||||
|
// @if TARGET='app'
|
||||||
showYoutubeTransfer && <YoutubeTransferWelcome />,
|
showYoutubeTransfer && <YoutubeTransferWelcome />,
|
||||||
|
// @endif
|
||||||
showLoadingSpinner && (
|
showLoadingSpinner && (
|
||||||
<div className="main--empty">
|
<div className="main--empty">
|
||||||
<Spinner />
|
<Spinner />
|
||||||
|
|
|
@ -22,7 +22,9 @@ export default function ChannelsPage(props: Props) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Page>
|
<Page>
|
||||||
|
{/* @if TARGET='app' */}
|
||||||
{hasYoutubeChannels && <YoutubeTransferStatus />}
|
{hasYoutubeChannels && <YoutubeTransferStatus />}
|
||||||
|
{/* @endif */}
|
||||||
|
|
||||||
{channels && channels.length ? (
|
{channels && channels.length ? (
|
||||||
<div className="card">
|
<div className="card">
|
||||||
|
|
Loading…
Add table
Reference in a new issue