Changed quote styles

This commit is contained in:
Alexis
2024-08-25 14:14:40 +02:00
parent 07e97873ef
commit 5a47cb3563
180 changed files with 949 additions and 948 deletions

View File

@@ -1,7 +1,7 @@
<script lang="ts" setup>
import { computed } from 'vue'
import { computed } from "vue"
import { PhUserCircle } from '@phosphor-icons/vue'
import { PhUserCircle } from "@phosphor-icons/vue"
const router = useRouter()
@@ -19,11 +19,11 @@ watch(user, closeMenu)
async function handleGoogleLogin() {
try {
auth.signInWithOAuth({
provider: 'google',
provider: "google",
options: {
queryParams: {
access_type: 'offline',
prompt: 'consent'
access_type: "offline",
prompt: "consent"
}
}
})
@@ -43,7 +43,7 @@ async function handleLogout() {
}
function gotoProfilePage() {
router.push({ path: '/i' })
router.push({ path: "/i" })
closeMenu()
}