Fixed linter errors
This commit is contained in:
parent
09a4f90b1a
commit
3b2382b59b
|
@ -21,7 +21,7 @@ const GroupDialogAvatar = (props: Props) => {
|
||||||
<For each={slicedUsers()}>
|
<For each={slicedUsers()}>
|
||||||
{(user) => (
|
{(user) => (
|
||||||
<DialogAvatar
|
<DialogAvatar
|
||||||
className={styles.grouped}
|
class={styles.grouped}
|
||||||
bordered={true}
|
bordered={true}
|
||||||
size="small"
|
size="small"
|
||||||
name={user.name}
|
name={user.name}
|
||||||
|
|
|
@ -43,7 +43,7 @@ export const AuthorView = (props: AuthorProps) => {
|
||||||
const [isLoadMoreButtonVisible, setIsLoadMoreButtonVisible] = createSignal(false)
|
const [isLoadMoreButtonVisible, setIsLoadMoreButtonVisible] = createSignal(false)
|
||||||
|
|
||||||
const author = createMemo(() => authorEntities()[props.authorSlug])
|
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 { searchParams, changeSearchParam } = useRouter<AuthorPageSearchParams>()
|
||||||
|
|
||||||
const loadMore = async () => {
|
const loadMore = async () => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user