From 51e33740b0586ce28ee53246d72a4100b59087c3 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sat, 17 Jun 2023 01:08:06 +0300 Subject: [PATCH] Update import path in CategoryLabel --- frontend/src/Search/Table/CategoryLabel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Search/Table/CategoryLabel.js b/frontend/src/Search/Table/CategoryLabel.js index 80ca3a61d..5c076c521 100644 --- a/frontend/src/Search/Table/CategoryLabel.js +++ b/frontend/src/Search/Table/CategoryLabel.js @@ -1,8 +1,8 @@ import PropTypes from 'prop-types'; import React from 'react'; import Label from 'Components/Label'; +import Tooltip from 'Components/Tooltip/Tooltip'; import { kinds, tooltipPositions } from 'Helpers/Props'; -import Tooltip from '../../Components/Tooltip/Tooltip'; function CategoryLabel({ categories }) { const sortedCategories = categories.filter((cat) => cat.name !== undefined).sort((c) => c.id);