This commit is contained in:
Philipinho
2026-08-10 03:41:54 +01:00
parent 311b511afb
commit 9f279d191c
29 changed files with 381 additions and 143 deletions
@@ -81,8 +81,7 @@ export default function Connections() {
{available
.filter((def) => {
if (!def.capabilities.includes("oauth")) return false;
const installation = installed?.find((i) => i.type === def.type);
return installation?.isEnabled;
return installed?.some((i) => i.type === def.type);
})
.map((def) => {
const connection = myConnections?.find(