lock+fmt
This commit is contained in:
parent
e07ace8741
commit
e797e8ca96
6
.vscode/extension.json
vendored
6
.vscode/extension.json
vendored
|
@ -1,7 +1,3 @@
|
|||
{
|
||||
"recommendations": [
|
||||
"biomejs.biome",
|
||||
"stylelint.vscode-stylelint",
|
||||
"wayou.vscode-todo-highlight"
|
||||
]
|
||||
"recommendations": ["biomejs.biome", "stylelint.vscode-stylelint", "wayou.vscode-todo-highlight"]
|
||||
}
|
||||
|
|
|
@ -26,7 +26,6 @@ import Search from '../../Inbox/Search'
|
|||
import { Modal } from '../../_shared/Modal'
|
||||
import styles from './Inbox.module.scss'
|
||||
|
||||
|
||||
const userSearch = (array: Author[], keyword: string) => {
|
||||
return array.filter((value) => new RegExp(keyword.trim(), 'gi').test(value.name || ''))
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ export default function TopicPage(props: RouteSectionProps<TopicPageProps>) {
|
|||
async () => props.data.articles || (await fetchTopicShouts(props.params.slug)) || []
|
||||
)
|
||||
|
||||
const title = createMemo(() => `${t('Discours')}${ topic()?.title ? (` :: ${topic()?.title}`) : '' }`)
|
||||
const title = createMemo(() => `${t('Discours')}${topic()?.title ? ` :: ${topic()?.title}` : ''}`)
|
||||
|
||||
createEffect(() => {
|
||||
if (topic() && window) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user