fix: swap parameters in getAccessToken call to match expected order

master
adriano 2025-06-30 14:34:48 -03:00
parent 65ec67d12e
commit 26704767ba
1 changed files with 1 additions and 1 deletions

View File

@ -600,7 +600,7 @@ const getClientAccessToken = async (req, res) => {
mustContainProperties(req, ['clientId']);
const accessToken = await getAccessToken(companyId, clientId);
const accessToken = await getAccessToken(clientId, companyId);
if (!accessToken) {
console.error(`Access token not found for companyId: ${companyId} and clientId: ${clientId}`);