disable Place Order if disallowed

This commit is contained in:
tim
2024-10-14 17:19:09 -04:00
parent fe8dd3ef6c
commit 0d942fc4e8
2 changed files with 3 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ export const useStore = defineStore('app', ()=> {
const nav = ref(false) // controls opening navigation drawer
const theme = ref('light') // todo 'dark'
const connected = ref(false)
const connected = ref(true) // we assume a connection will succeed until socket.io complains otherwise
const allowed = ref(!REQUIRE_AUTH)
const _chainId = ref(Number(Object.keys(versionMeta.chainInfo)[0]))