Multiple dicomweb datasources in OHIF v3

Hi I would like to read studies from 2 dicomweb datasources.

My config is

"{
//… other things
defaultDataSourceName: “dicomweb”,
dataSources: [
{
friendlyName: “Orthanc DICOMWeb Server”,
namespace: “@ohif/extension-default.dataSourcesModule.dicomweb”,
sourceName: “dicomweb”,
configuration: {
name: “Orthanc”,
// … links
qidoSupportsIncludeField: true,
imageRendering: “wadors”,
thumbnailRendering: “wadors”,
enableStudyLazyLoad: true,
supportsFuzzyMatching: true,
},
requestOptions: {
auth: “demo:demo”,
},
},
{
friendlyName: “dcmjs DICOMWeb Server”,
namespace: “@ohif/extension-default.dataSourcesModule.dicomweb”,
sourceName: “dcmjs”,
configuration: {
name: “DCM4CHEE”,
// … links
qidoSupportsIncludeField: true,
supportsReject: true,
imageRendering: “wadors”,
thumbnailRendering: “wadors”,
enableStudyLazyLoad: true,
supportsFuzzyMatching: true,
supportsWildcard: true,
},
}
}
"

but this reads only data from the 1st datasource and not also from the 2nd one.
How can I fix it?