Sorry for the inconvenience, to fix the problem, you need to edit the file /framework/class-framework.php
and replace the following code
// Template library.
if ( xts_is_build_for_space() ) {
xts_get_file( 'framework/integration/elementor/template-library/class-library-source' );
xts_get_file( 'framework/integration/elementor/template-library/class-library' );
}
with this one
// Template library.
xts_get_file( 'framework/integration/elementor/template-library/class-library-source' );
xts_get_file( 'framework/integration/elementor/template-library/class-library' );
Also, add the following snippet to the file /framework/integration/elementor/template-library/class-library.php
on line 57
if ( ! xts_is_build_for_space() ) {
return;
}
Kind Regards