-
Notifications
You must be signed in to change notification settings - Fork 402
feat: add custom webview loader for Buy/Sell #10305
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: develop
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git βοΈ 4 Skipped Deployments
|
05d1b36
to
2d6fd3f
Compare
86c0952
to
29239a4
Compare
4274195
to
2e0769f
Compare
308cc26
to
93425b8
Compare
b706a9e
to
19fdfc2
Compare
19fdfc2
to
705f719
Compare
CustomLoader, | ||
}: WebviewProps & { | ||
CustomLoader?: React.ComponentType<{ | ||
manifest: LiveAppManifest; | ||
isLoading: boolean; | ||
}>; | ||
}) { |
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.
I think we should be able to directly use the Loader
props from WebviewProps
instead of adding a new CustomLoader
with the same type
CustomLoader, | |
}: WebviewProps & { | |
CustomLoader?: React.ComponentType<{ | |
manifest: LiveAppManifest; | |
isLoading: boolean; | |
}>; | |
}) { | |
Loader, | |
}: WebviewProps) { |
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.
Good shout! Update added here cc5d404
|
β Checklist
npx changeset
was attached.π Description
Adding a custom loader to enable custom transition between Buy/Sell and providers in LLM and LLD.
Demo
β Context
π§ Checklist for the PR Reviewers