Fixed linter errors

This commit is contained in:
kvakazyambra 2022-12-21 23:39:40 +03:00
parent 09a4f90b1a
commit 3b2382b59b
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ const GroupDialogAvatar = (props: Props) => {
<For each={slicedUsers()}>
{(user) => (
<DialogAvatar
className={styles.grouped}
class={styles.grouped}
bordered={true}
size="small"
name={user.name}

View File

@ -43,7 +43,7 @@ export const AuthorView = (props: AuthorProps) => {
const [isLoadMoreButtonVisible, setIsLoadMoreButtonVisible] = createSignal(false)
const author = createMemo(() => authorEntities()[props.authorSlug])
const subscribers = new Array(12).fill(author())
const subscribers = Array.from({ length: 12 }).fill(author())
const { searchParams, changeSearchParam } = useRouter<AuthorPageSearchParams>()
const loadMore = async () => {