fix: invalid api key error only w/ plg

This commit is contained in:
Zack Spear
2023-08-07 16:45:48 -07:00
committed by Zack Spear
parent 93e331ed68
commit f5c950a949

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;
}