Skip to content

Commit

Permalink
🐛 Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed Feb 13, 2024
1 parent d127d7c commit 27d2e19
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/lemon-chicken-enjoy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@panora/embedded-card-react": patch
---

little fix
2 changes: 1 addition & 1 deletion apps/embedded-catalog/react/src/helpers/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const config = {
API_URL: "http://localhost:3000"
API_URL: "https://api-dev.panora.dev" //"http://localhost:3000"
};

export default config;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export class HubspotConnectionService implements ICrmConnectionService {
const REDIRECT_URI = `${this.env.getOAuthRredirectBaseUrl()}/connections/oauth/callback`;
const formData = new URLSearchParams({
grant_type: 'authorization_code',
client_id: 'ba591170-a7c7-4fca-8086-1bd178c6b14d', //this.env.getHubspotAuth().CLIENT_ID,
client_secret: '5553551a-2e5d-49da-a933-35a3d9d9e035', //this.env.getHubspotAuth().CLIENT_SECRET,
client_id: this.env.getHubspotAuth().CLIENT_ID,
client_secret: this.env.getHubspotAuth().CLIENT_SECRET,
redirect_uri: REDIRECT_URI,
code: code,
});
Expand Down

0 comments on commit 27d2e19

Please sign in to comment.