Fixed linter errors
This commit is contained in:
parent
09a4f90b1a
commit
3b2382b59b
|
@ -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}
|
||||
|
|
|
@ -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 () => {
|
||||
|
|
Loading…
Reference in New Issue
Block a user