fix(code): remove console log (#4248)

This commit is contained in:
Ibrahim 2024-06-21 10:04:02 -04:00 committed by GitHub
parent b6136acff6
commit f3bbfff09b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,7 @@ window.config = {
showWarningMessageForCrossOrigin: true,
showCPUFallbackMessage: true,
showLoadingIndicator: true,
experimentalStudyBrowserSort: true,
experimentalStudyBrowserSort: false,
strictZSpacingForVolumeViewport: true,
groupEnabledModesFirst: true,
maxNumRequests: {

View File

@ -43,7 +43,6 @@ export function createStudyBrowserTabs(primaryStudyInstanceUIDs, studyDisplayLis
return false;
}
const studyTimeStamp = new Date(study.date).getTime();
console.log(oldestPrimaryTimeStamp, studyTimeStamp, recentTimeframeMS)
return oldestPrimaryTimeStamp - studyTimeStamp < recentTimeframeMS;
})
: [];