aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-04-10 14:15:49 -0400
committerGitHub <noreply@github.com>2021-04-10 14:15:49 -0400
commit1c7690a3b398e12834aa2aaa0b7c34c9e9a65821 (patch)
tree8b3e91190b838c26845f6f86f98093da2170836f /src/components
parent506785887480e302b4052edbec4a8160785c0239 (diff)
parentfd417c78068e544b1611f2b5f2ae504431b14814 (diff)
Merge pull request #361 from shravyaramesh/fix-import-paths
[quickfix] fixed import paths starting with src/
Diffstat (limited to 'src/components')
-rw-r--r--src/components/search/SearchCategories.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/search/SearchCategories.tsx b/src/components/search/SearchCategories.tsx
index 3d142981..f505d317 100644
--- a/src/components/search/SearchCategories.tsx
+++ b/src/components/search/SearchCategories.tsx
@@ -5,7 +5,7 @@ import {getSuggestedSearchBubbleSuggestions} from '../../services/ExploreService
import {SearchCategoryType} from '../../types';
import GradientBorderButton from '../common/GradientBorderButton';
import {useSelector} from 'react-redux';
-import {RootState} from 'src/store/rootReducer';
+import {RootState} from '../../store/rootReducer';
interface SearchCategoriesProps {
darkStyle?: boolean;