Fix eslint errors

This commit is contained in:
Owen
2026-06-04 10:22:29 -07:00
parent aac25f0a53
commit 6c4cbcab5d
8 changed files with 9 additions and 12 deletions

View File

@@ -86,7 +86,7 @@ export default async function Page(props: {
targetOrgId = lastOrgCookie;
} else {
let ownedOrg = orgs.find((org) => org.isOwner);
let primaryOrg = orgs.find((org) => org.isPrimaryOrg);
const primaryOrg = orgs.find((org) => org.isPrimaryOrg);
if (!ownedOrg) {
if (primaryOrg) {
ownedOrg = primaryOrg;