Skip to content

Commit 41835b1

Browse files
committed
Fix lint isses
1 parent 0ff6211 commit 41835b1

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

layouts/default.vue

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,18 @@ import Footer from '~/components/AppFooter.vue'
2222
2323
export default {
2424
components: { Header, Footer },
25+
head() {
26+
return {
27+
title: `${this.authorName} is listening - A Musical App`,
28+
link: [
29+
{
30+
rel: 'stylesheet',
31+
href:
32+
'https://fonts.googleapis.com/css?family=Bungee+Hairline|Oswald'
33+
}
34+
]
35+
}
36+
},
2537
computed: {
2638
authorName() {
2739
return this.$store.state.authorName
@@ -38,18 +50,6 @@ export default {
3850
rootClass() {
3951
return this.isAuthView ? 'auth base' : 'base'
4052
}
41-
},
42-
head() {
43-
return {
44-
title: `${this.authorName} is listening - A Musical App`,
45-
link: [
46-
{
47-
rel: 'stylesheet',
48-
href:
49-
'https://fonts.googleapis.com/css?family=Bungee+Hairline|Oswald'
50-
}
51-
]
52-
}
5353
}
5454
}
5555
</script>

store/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ export const mutations = {
3939
}
4040
}
4141
export const actions = {
42-
// eslint-disable-next-line require-await
4342
async nuxtServerInit({ commit }) {
4443
try {
4544
const redisUrl = `${clientUrl}/api/spotify/data/`

0 commit comments

Comments
 (0)