fix type errors of MkAvatars
This commit is contained in:
parent
73537ec6fa
commit
1a1d817772
1 changed files with 2 additions and 1 deletions
|
@ -9,12 +9,13 @@
|
|||
<script lang="ts" setup>
|
||||
import { onMounted, ref } from "vue";
|
||||
import * as os from "@/os";
|
||||
import type { entities } from "firefish-js";
|
||||
|
||||
const props = defineProps<{
|
||||
userIds: string[];
|
||||
}>();
|
||||
|
||||
const users = ref([]);
|
||||
const users = ref<entities.UserDetailed[]>([]);
|
||||
|
||||
onMounted(async () => {
|
||||
users.value = await os.api("users/show", {
|
||||
|
|
Loading…
Reference in a new issue