fix: lint

This commit is contained in:
Mar0xy 2023-09-22 03:57:24 +02:00
parent 313cbb19db
commit 4a63114ef0
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828
2 changed files with 7 additions and 6 deletions

View file

@ -189,7 +189,7 @@ function calcAge(birthdate: string): number {
const XPhotos = defineAsyncComponent(() => import('./index.photos.vue'));
const XActivity = defineAsyncComponent(() => import('./index.activity.vue'));
const XListenBrainz = defineAsyncComponent(() => import("./index.listenbrainz.vue"));;
const XListenBrainz = defineAsyncComponent(() => import("./index.listenbrainz.vue"));
const props = withDefaults(defineProps<{
user: Misskey.entities.UserDetailed;

View file

@ -28,6 +28,7 @@
</template>
<script lang="ts" setup>
/* eslint-disable no-mixed-spaces-and-tabs */
import {} from "vue";
import * as misskey from "misskey-js";
import MkContainer from "@/components/MkContainer.vue";
@ -45,7 +46,7 @@ if (props.user.listenbrainz) {
headers: {
'Content-Type': 'application/json'
},
})
});
const data = await response.json();
if (!data.recording_name) {
return null;