diff --git a/src/components/Topic/Full.module.scss b/src/components/Topic/Full.module.scss index 8c6d7b49..ee8ba0bd 100644 --- a/src/components/Topic/Full.module.scss +++ b/src/components/Topic/Full.module.scss @@ -57,5 +57,5 @@ } .topicDetailsIcon { - -} + display: block; +} \ No newline at end of file diff --git a/src/components/Topic/Full.tsx b/src/components/Topic/Full.tsx index 681996d1..497c584a 100644 --- a/src/components/Topic/Full.tsx +++ b/src/components/Topic/Full.tsx @@ -1,7 +1,7 @@ import type { Author, Topic } from '../../graphql/schema/core.gen' import { clsx } from 'clsx' -import { For, Show, createEffect, createSignal } from 'solid-js' +import { Show, createEffect, createSignal } from 'solid-js' import { useFollowing } from '../../context/following' import { useLocalize } from '../../context/localize' @@ -11,8 +11,6 @@ import { Button } from '../_shared/Button' import { Icon } from '../_shared/Icon' import { Subscribers } from '../_shared/Subscribers' -import stylesCard from '../Author/AuthorCard/AuthorCard.module.scss' -import { Userpic } from '../Author/Userpic' import styles from './Full.module.scss' type Props = { @@ -57,7 +55,7 @@ export const FullTopic = (props: Props) => { - +
diff --git a/src/pages/feed.page.tsx b/src/pages/feed.page.tsx index 869d22da..638055c5 100644 --- a/src/pages/feed.page.tsx +++ b/src/pages/feed.page.tsx @@ -1,6 +1,5 @@ -import { Match, Switch, createEffect, on, onCleanup } from 'solid-js' +import { createEffect, on, onCleanup } from 'solid-js' -import { AuthGuard } from '../components/AuthGuard' import { Feed } from '../components/Views/Feed' import { PageLayout } from '../components/_shared/PageLayout' import { useLocalize } from '../context/localize' @@ -43,16 +42,7 @@ export const FeedPage = () => { return ( - }> - - - - - - - - - + )