Is this it?

This commit is contained in:
Leo Giovanetti 2022-11-16 13:42:34 -03:00
parent e9601b16be
commit 70b3f7b98e

View File

@ -33,7 +33,7 @@ export async function getHandler(req: NextApiRequest, res: NextApiResponse) {
return res.status(500).json({ message: "Could not add Sendgrid app" });
}
return res.status(200).json({ url: getInstalledAppPath({ variant: "other", slug: "sendgrid" }) });
return res.status(200).json({ url: `/apps/installed/$other?hl=sendgrid` });
}
export default defaultResponder(getHandler);