Skip to content

Commit 638e4cb

Browse files
committed
refactor: comment out unused settings dialog and related function
1 parent 05268c2 commit 638e4cb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

apps/web/src/components/appbar/RightButtons.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ div
1818
flat
1919
dense
2020
)
21-
q-dialog( v-model="settings" full-width persistent)
22-
sesame-settings
21+
//- q-dialog( v-model="settings" full-width persistent)
22+
//- sesame-settings
2323
</template>
2424

2525
<script lang="ts" setup>
2626
import { useIdentityStateStore } from '~/stores/identityState'
2727
import { ref } from 'vue'
28-
let settings = ref(false)
28+
// let settings = ref(false)
2929
3030
const identityStateStore = useIdentityStateStore()
3131
const stateValue = ref(0)
@@ -62,9 +62,9 @@ const buttons = [
6262
]
6363
6464
const emits = defineEmits(['syncing'])
65-
function displaySettings() {
66-
settings.value = true
67-
}
65+
// function displaySettings() {
66+
// settings.value = true
67+
// }
6868
async function syncAll() {
6969
emits('syncing', { count: badgesValues.value.TO_SYNC })
7070
await useHttp('/core/backends/syncall', {

0 commit comments

Comments
 (0)