We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06f39cb commit 925ac7bCopy full SHA for 925ac7b
src/components/content-tab-import-export.tsx
@@ -229,8 +229,8 @@ const ImportSite = ( {
229
const startLoadingCursorClassName =
230
loadingServer[ selectedSite.id ] && 'animate-pulse duration-100 cursor-wait';
231
232
- const isImporting = currentProgress?.progress < 100;
233
- const isImported = currentProgress?.progress === 100 && ! isDraggingOver;
+ const isImporting = currentProgress?.progress < 100 && ! isThisSiteSyncing;
+ const isImported = currentProgress?.progress === 100 && ! isDraggingOver && ! isThisSiteSyncing;
234
const isInitial = ! isImporting && ! isImported;
235
return (
236
<div className={ cx( 'flex flex-col w-full', startLoadingCursorClassName ) }>
0 commit comments