diff --git a/services/web/frontend/js/features/history/components/diff-view/toolbar/toolbar.tsx b/services/web/frontend/js/features/history/components/diff-view/toolbar/toolbar.tsx index ce352582e2..6087f3cc8d 100644 --- a/services/web/frontend/js/features/history/components/diff-view/toolbar/toolbar.tsx +++ b/services/web/frontend/js/features/history/components/diff-view/toolbar/toolbar.tsx @@ -7,6 +7,7 @@ import ToolbarRestoreFileButton from './toolbar-restore-file-button' import { isFileRemoved } from '../../../utils/file-diff' import ToolbarRestoreFileToVersionButton from './toolbar-restore-file-to-version-button' import { useFeatureFlag } from '@/shared/context/split-test-context' +import SplitTestBadge from '@/shared/components/split-test-badge' type ToolbarProps = { diff: Nullable @@ -34,7 +35,13 @@ export default function Toolbar({ diff, selection }: ToolbarProps) { ) : null} {showRestoreFileToVersionButton ? ( - + <> + + + ) : null} )