We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 596c5b2 commit e53f741Copy full SHA for e53f741
src/pages/LandingPage.vue
@@ -2,8 +2,6 @@
2
import { open } from '@tauri-apps/api/shell'
3
import { ref } from 'vue'
4
import AppButton from '../components/AppButton.vue'
5
-import PageHeader from '../components/PageHeader.vue'
6
-import { Icons } from '../components/Icons'
7
import { Page } from '../constants'
8
import { useStore } from '../stores/store'
9
import { useTauriEvent } from '../composables/useTauriEvent'
@@ -58,7 +56,10 @@ function handleLogin() {
58
56
</template>
59
57
60
<template #footer>
61
- <AppButton @click="handleLogin">
+ <AppButton
+ :loading="processing"
+ @click="handleLogin"
62
+ >
63
Log in via Github
64
</AppButton>
65
0 commit comments