diff --git a/redisinsight/ui/src/components/base/tooltip/HoverContent.tsx b/redisinsight/ui/src/components/base/tooltip/HoverContent.tsx
index 422ef553d0..a722cd5833 100644
--- a/redisinsight/ui/src/components/base/tooltip/HoverContent.tsx
+++ b/redisinsight/ui/src/components/base/tooltip/HoverContent.tsx
@@ -9,8 +9,8 @@ interface RiTooltipContentProps {
}
export const HoverContent = ({ title, content }: RiTooltipContentProps) => (
-
- {title && {title}}
+
+ {title && {title}}
{content}
)
diff --git a/redisinsight/ui/src/pages/browser/modules/key-details/components/change-editor-type-button/ChangeEditorTypeButton.spec.tsx b/redisinsight/ui/src/pages/browser/modules/key-details/components/change-editor-type-button/ChangeEditorTypeButton.spec.tsx
index 8c8b7040e9..90f0738c05 100644
--- a/redisinsight/ui/src/pages/browser/modules/key-details/components/change-editor-type-button/ChangeEditorTypeButton.spec.tsx
+++ b/redisinsight/ui/src/pages/browser/modules/key-details/components/change-editor-type-button/ChangeEditorTypeButton.spec.tsx
@@ -1,7 +1,6 @@
import React from 'react'
-import { render, screen } from '@testing-library/react'
-import { userEvent } from 'uiSrc/utils/test-utils'
+import { render, screen, userEvent } from 'uiSrc/utils/test-utils'
import ChangeEditorTypeButton from './ChangeEditorTypeButton'
const mockSwitchEditorType = jest.fn()