Skip to content

Commit

Permalink
fix (ee): fixed misconfiguration reason in domains report
Browse files Browse the repository at this point in the history
  • Loading branch information
vklimontovich committed Dec 5, 2023
1 parent 270b898 commit 008315b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapps/ee-api/pages/api/report/domains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const handler = async function handler(req: NextApiRequest, res: NextApiResponse
let misconfigurationReason: any = null;
if (!domainStatus?.misconfigured && domainInfo?.verified) {
configured = true;
} else if (domainInfo?.misconfigured) {
} else if (domainStatus?.misconfigured) {
configured = false;
misconfigurationReason = "cname";
} else {
Expand Down

1 comment on commit 008315b

@vercel
Copy link

@vercel vercel bot commented on 008315b Dec 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

new-jitsu-ee-api – ./webapps/ee-api

onetag-ee-api.vercel.app
new-jitsu-ee-api-jitsu.vercel.app
new-jitsu-ee-api-git-newjitsu-jitsu.vercel.app
ee.jitsu.dev

Please sign in to comment.