When creating a new event type on https://app.cal.com/event-types, there is an extra space inserted in the generated event URL slug. For example, entering a title like Demo-test-title produces a URL like:
https://cal.com/mudityadev/ demo-test-title
This breaks the URL structure and could lead to invalid or non-functional booking links.
Steps to Reproduce
- Go to
https://app.cal.com/event-types
- Click on
Add a new event type
- Enter a title, e.g.
Demo-test-title
- Observe the generated URL field under
URL
Any other relevant information:
- This is likely caused by improper string trimming or slug generation.
- I expected the URL to be clean and without unnecessary whitespace.
Actual Results
The generated URL contains an unexpected space after the /, like:
https://cal.com/mudityadev/ demo-test-title
Copy-pasting this results in broken or unclickable links.
Expected Results
The URL should be properly formatted without spaces, like:
https://cal.com/mudityadev/demo-test-title This ensures consistent, valid URLs for event booking.
Technical details
Browser: Chrome Version 114 on Windows 10
Node.js version: N/A (using web app)
No specific console errors noticed, purely a front-end input formatting issue
Could provide a short screen recording or Bird Eats Bug capture if needed.
Evidence
Attached s


creenshots showing the extra space in the URL field during creation.
Can easily replicate with any title input.
Willing to test any fixes or provide more details on request.
When creating a new event type on
https://app.cal.com/event-types,there is an extra space inserted in the generated event URL slug. For example, entering a title like Demo-test-title produces a URL like:https://cal.com/mudityadev/ demo-test-titleThis breaks the URL structure and could lead to invalid or non-functional booking links.
Steps to Reproduce
https://app.cal.com/event-typesAdd a new event typeDemo-test-titleURLAny other relevant information:
Actual Results
The generated URL contains an unexpected space after the
/, like:https://cal.com/mudityadev/ demo-test-titleCopy-pasting this results in broken or unclickable links.
Expected Results
The URL should be properly formatted without spaces, like:
https://cal.com/mudityadev/demo-test-titleThis ensures consistent, valid URLs for event booking.Technical details
Browser: Chrome Version 114 on Windows 10
Node.js version: N/A (using web app)
No specific console errors noticed, purely a front-end input formatting issue
Could provide a short screen recording or Bird Eats Bug capture if needed.
Evidence
Attached s
creenshots showing the extra space in the URL field during creation.
Can easily replicate with any title input.
Willing to test any fixes or provide more details on request.