dont' show youtube intro for abandoned youtube syncs

This commit is contained in:
Sean Yesmunt 2020-09-09 17:13:25 -04:00
parent 65dfd54cdd
commit 4facd12c7c

View file

@ -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