Skip to content

Commit

Permalink
fix(code): remove console log (#4248)
Browse files Browse the repository at this point in the history
  • Loading branch information
IbrahimCSAE authored Jun 21, 2024
1 parent b6136ac commit f3bbfff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion platform/app/public/config/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ window.config = {
showWarningMessageForCrossOrigin: true,
showCPUFallbackMessage: true,
showLoadingIndicator: true,
experimentalStudyBrowserSort: true,
experimentalStudyBrowserSort: false,
strictZSpacingForVolumeViewport: true,
groupEnabledModesFirst: true,
maxNumRequests: {
Expand Down
1 change: 0 additions & 1 deletion platform/core/src/utils/createStudyBrowserTabs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
})
: [];
Expand Down

0 comments on commit f3bbfff

Please sign in to comment.