Skip to content

Commit

Permalink
chore(eslint): fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Likqez committed Oct 31, 2024
1 parent 4b2126f commit ee9db44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ useSeoMeta({
description: "A fun music quiz game"
})
const session = useSupabaseSession()
// const session = useSupabaseSession()
</script>

<template>
<div class="h-screen bg-gradient-to-b from-indigo-500 via-purple-500 to-pink-500">

</div>
<div class="h-screen bg-gradient-to-b from-indigo-500 via-purple-500 to-pink-500"/>
</template>
Binary file added public/icons/Spotify_Full_Logo_RGB_Green.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion server/api/v1/user/[uid].get.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default defineEventHandler((event) => {
const userId = getRouterParam(event, 'uid')

return;
return {user: userId};
})

0 comments on commit ee9db44

Please sign in to comment.