refactor: update Google Drive indexer to return an additional unsupported file count, enhancing error reporting consistency

This commit is contained in:
Anish Sarkar 2026-04-07 05:30:10 +05:30
parent aba5f6a124
commit e4462292e4
2 changed files with 3 additions and 9 deletions

View file

@ -417,14 +417,8 @@ export const ConnectorEditView: FC<ConnectorEditViewProps> = ({
disabled={isSaving || isDisconnecting}
className="text-xs sm:text-sm flex-1 sm:flex-initial h-12 sm:h-auto py-3 sm:py-2"
>
{isSaving ? (
<>
<Spinner size="sm" className="mr-2" />
Saving
</>
) : (
"Save Changes"
)}
{isSaving && <Spinner size="sm" className="mr-2" />}
Save Changes
</Button>
)}
</div>