From dcde8418390f7070d6830ebf6257dc08969e8136 Mon Sep 17 00:00:00 2001 From: Alexis jankowski <73858646+Sixela33@users.noreply.github.com> Date: Fri, 16 May 2025 15:11:01 -0300 Subject: [PATCH] fix(cli): removing missing imports in mode template (#5049) --- platform/cli/templates/mode/src/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/cli/templates/mode/src/index.tsx b/platform/cli/templates/mode/src/index.tsx index a327b68cb..c0046a29c 100644 --- a/platform/cli/templates/mode/src/index.tsx +++ b/platform/cli/templates/mode/src/index.tsx @@ -1,5 +1,5 @@ import { hotkeys } from '@ohif/core'; -import { initToolGroups, toolbarButtons, moreTools } from '@ohif/mode-longitudinal'; +import { initToolGroups, toolbarButtons } from '@ohif/mode-longitudinal'; import { id } from './id'; const ohif = { @@ -48,7 +48,7 @@ function modeFactory({ modeConfiguration }) { // Init Default and SR ToolGroups initToolGroups(extensionManager, toolGroupService, commandsManager); - toolbarService.register([...toolbarButtons, ...moreTools]); + toolbarService.register([...toolbarButtons]); toolbarService.updateSection('primary', [ 'MeasurementTools', 'Zoom',