-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Plain chat #18284
feat: Plain chat #18284
Conversation
Hey there and thank you for opening this pull request! 👋🏼 We require pull request titles to follow the Conventional Commits specification and it looks like your proposed title needs to be adjusted. Details:
|
Graphite Automations"Add consumer team as reviewer" took an action on this PR • (12/20/24)1 reviewer was added to this PR based on Keith Williams's automation. "Add foundation team as reviewer" took an action on this PR • (12/20/24)1 reviewer was added to this PR based on Keith Williams's automation. "Add ready-for-e2e label" took an action on this PR • (12/26/24)1 label was added to this PR based on Keith Williams's automation. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 2 Skipped Deployments
|
No dependency changes detected. Learn more about Socket for GitHub ↗︎ 👍 No dependency changes detected in pull request |
@nizzyabi Type-check test is failing! You can check https://github.com/calcom/cal.com/actions/runs/12439539908/job/34733552858?pr=18284 |
: customer.emailVerified | ||
? "GREEN" | ||
: "RED", | ||
customer.emailVerified === undefined ? "No" : customer.emailVerified ? "Yes" : "No", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
customer.emailVerified === undefined ? "No" : customer.emailVerified ? "Yes" : "No", | |
customer.emailVerified ? "Yes" : "No", |
apps/web/lib/plain/plainChat.tsx
Outdated
} | ||
`; | ||
|
||
useEffect(() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This duplicates the hook logic; what do you say about moving this into the hook entirely?
Co-authored-by: Syed Ali Shahbaz <[email protected]>
…pp router metadata logic (#18348) * remove HeadSeo for already migrated pages and refactor prepareMetadata * create _generateMetadataWithoutImage and refactor _generateMetadata
* chore: app router - /bookings page * remove env vars * fix * Update middleware.ts * revert unneeded change * refactor for the better * fix
Co-authored-by: CarinaWolli <[email protected]> Co-authored-by: sean-brydon <[email protected]> Co-authored-by: sean-brydon <[email protected]> Co-authored-by: Peer Richelsen <[email protected]> Co-authored-by: Omar López <[email protected]>
Co-authored-by: Replexica <[email protected]>
…g parent (#18059) * fix: metadata is overwirten * Update * type error * Update * fix test * fix type error
* Added routing form support link * small change * Type fix --------- Co-authored-by: Joe Au-Yeung <[email protected]>
* refactor handling logic for embeds in app router * fix type checks * add test for withEmbedSsrAppDir * fix
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
E2E results are ready! |
What does this PR do?
This PR replaces the main intercom chat with plain.com's live chat feature.
Mandatory Tasks (DO NOT REMOVE)
How should this be tested?
PLAIN_CHAT_ID=
PLAIN_CHAT_HMAC_SECRET_KEY=
Post requests to plain.com
Able to see user messages in plain
Checklist