Fixed merge mistake

This commit is contained in:
VolgaIgor 2025-11-11 19:38:15 +03:00
commit 1103e60fd2

View file

@ -68,15 +68,7 @@ export async function getConvertibleToolsForBlock(block: BlockAPI, allBlockTools
if (!isToolConvertable(tool, 'import')) {
return result;
}
/**
* Checking that the block is not empty after conversion
*/
const importData = convertExportToBlockData(exportData, tool.conversionConfig);
if (isUndefined(importData) || isEmpty(importData)) {
return result;
}
/**
* Skip tools that does not specify toolbox
*/