fix: invalid api key error only w/ plg

This commit is contained in:
Zack Spear
2023-08-07 16:45:48 -07:00
parent 7e75272991
commit 2dd89fad4c

View File

@@ -538,7 +538,7 @@ export const useServerStore = defineStore('server', () => {
const invalidApiKey = computed((): Error | undefined => {
// must be registered with plugin installed
if (!registered.value) {
if (!connectPluginInstalled.value || !registered.value) {
return undefined;
}