aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Widget/TopicsList/TopicsList.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-11 12:54:24 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-11 15:33:04 +0100
commit812a8fad8cd703d3e501d03b280b8e5749f4ae57 (patch)
treec07f8dfe20721e757f8cd21dd955a42b9c564276 /src/components/Widget/TopicsList/TopicsList.tsx
parent9b8eced56f5e029bc92ad59b47cb9fd146b5e1d2 (diff)
chore(widget): add a related topics widget
Diffstat (limited to 'src/components/Widget/TopicsList/TopicsList.tsx')
-rw-r--r--src/components/Widget/TopicsList/TopicsList.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Widget/TopicsList/TopicsList.tsx b/src/components/Widget/TopicsList/TopicsList.tsx
index fabd40d..179d129 100644
--- a/src/components/Widget/TopicsList/TopicsList.tsx
+++ b/src/components/Widget/TopicsList/TopicsList.tsx
@@ -2,7 +2,7 @@ import { t } from '@lingui/macro';
import { getAllSubjects } from '@services/graphql/queries';
import Link from 'next/link';
import useSWR from 'swr';
-import styles from './TopicsList.module.scss';
+import styles from '../Widget.module.scss';
const TopicsList = () => {
const { data, error } = useSWR('/api/subjects', getAllSubjects);