diff --git a/src/components/Feed/Placeholder/Placeholder.tsx b/src/components/Feed/Placeholder/Placeholder.tsx index 47022f6f..50cb2157 100644 --- a/src/components/Feed/Placeholder/Placeholder.tsx +++ b/src/components/Feed/Placeholder/Placeholder.tsx @@ -3,11 +3,11 @@ import { For, Show } from 'solid-js' import { useLocalize } from '../../../context/localize' import { useSession } from '../../../context/session' +import { Icon } from '../../_shared/Icon' import styles from './Placeholder.module.scss' -import {Icon} from "../../_shared/Icon"; export type PlaceholderProps = { - type: string, + type: string mode: 'feed' | 'profile' } @@ -46,9 +46,9 @@ export const Placeholder = (props: PlaceholderProps) => { profileLinks: [ { href: '/how-to-write-a-good-article', - label: t('How to write a good article') - } - ] + label: t('How to write a good article'), + }, + ], }, authorComments: { image: 'placeholder-discussions.webp', @@ -59,25 +59,31 @@ export const Placeholder = (props: PlaceholderProps) => { profileLinks: [ { href: '/about/discussion-rules', - label: t('Discussion rules') + label: t('Discussion rules'), }, { href: '/about/discussion-rules#ban', - label: t('Block rules') - } - ] + label: t('Block rules'), + }, + ], }, } return ( -
+
+