Replace antd Divider and Checkbox components with native alternatives in the NewProject pages to reduce antd dependencies.
| File | antd Component Removed | Replacement |
|---|---|---|
NewProjectPage.tsx |
Divider from antd |
Box with borderTop="dividerWeak" |
AutoJoinInput.tsx |
Divider from antd |
Box with pt="4" (spacing-only divider) |
AutoJoinInput.tsx |
Checkbox from antd/es/checkbox |
Native <input type="checkbox"> |
The Divider in AutoJoinInput.tsx was used purely for spacing (border-none pt-1), so it was replaced with a Box using padding. The Checkbox was a simple boolean toggle that works identically with a native HTML checkbox.
Part of the ongoing effort to remove antd dependencies from workspace and project settings.
/claim #8635
🤖 Generated with Claude Code
xidik12
@xidik12
Highlight (YC W23)
@highlight