-
Notifications
You must be signed in to change notification settings - Fork 134
feat: new onboarding experience #3561
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
base: main
Are you sure you want to change the base?
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
2 Skipped Deployments
|
How to use the Graphite Merge QueueAdd the label merge-queue to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
Graphite Automations"Test" took an action on this PR • (12/01/25)1 assignee was added to this PR based on Kacper Wojciechowski's automation. |
More templates
@rivetkit/cloudflare-workers
@rivetkit/db
@rivetkit/framework-base
@rivetkit/next-js
@rivetkit/react
rivetkit
@rivetkit/sql-loader
@rivetkit/engine-runner
@rivetkit/engine-runner-protocol
commit: |
23b4802 to
25e6ef4
Compare
PR Review: New Onboarding ExperienceThank you for this contribution! I've reviewed the PR and have the following feedback: 🎯 OverviewThis PR refactors the onboarding experience by extracting the large inline connect UI into reusable components. The changes improve code organization and maintainability. ✅ Strengths
🐛 Issues Found1. Interface Naming Mismatch (start-with-template-frame.tsx:13)interface ConnectAwsFrameContentProps extends DialogContentProps {
template: string;
}The interface is named Fix: interface StartWithTemplateFrameProps extends DialogContentProps {
template: string;
}2. Inconsistent Indentation (start-with-template-frame.tsx:27-33)Lines 27-33 use spaces instead of tabs, violating the codebase's hard tab convention. Fix: Replace leading spaces with tabs to match the existing code style. 3. Unused Template Parameter (start-with-template-frame.tsx:39)The Consider: Either use the template parameter to customize the provider selection or remove it if not needed yet. 4. Non-Existent Modal Reference (getting-started.tsx:34)search={{ modal: "connect-existing-project" }}This modal name doesn't appear to be registered in the dialog system. I don't see a corresponding dialog handler in the modal routes. Action Required: Verify this modal exists or update to use an existing modal name.
|
NathanFlurry
left a comment
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.
see linear
25e6ef4 to
84ab7e0
Compare
84ab7e0 to
a0da170
Compare

No description provided.