dont' show youtube intro for abandoned youtube syncs
This commit is contained in:
parent
65dfd54cdd
commit
4facd12c7c
1 changed files with 5 additions and 1 deletions
|
@ -92,7 +92,11 @@ function UserSignUp(props: Props) {
|
||||||
const hasYoutubeChannels = youtubeChannels && Boolean(youtubeChannels.length);
|
const hasYoutubeChannels = youtubeChannels && Boolean(youtubeChannels.length);
|
||||||
const isYoutubeTransferComplete =
|
const isYoutubeTransferComplete =
|
||||||
hasYoutubeChannels &&
|
hasYoutubeChannels &&
|
||||||
youtubeChannels.every(channel => channel.transfer_state === YOUTUBE_STATUSES.COMPLETED_TRANSFER);
|
youtubeChannels.every(
|
||||||
|
channel =>
|
||||||
|
channel.transfer_state === YOUTUBE_STATUSES.COMPLETED_TRANSFER ||
|
||||||
|
channel.sync_status === YOUTUBE_STATUSES.YOUTUBE_SYNC_ABANDONDED
|
||||||
|
);
|
||||||
// Complexity warning
|
// Complexity warning
|
||||||
// We can't just check if we are currently fetching something
|
// We can't just check if we are currently fetching something
|
||||||
// We may want to keep a component rendered while something is being fetched, instead of replacing it with the large spinner
|
// We may want to keep a component rendered while something is being fetched, instead of replacing it with the large spinner
|
||||||
|
|
Loading…
Add table
Reference in a new issue