Conversation
|
Deploying openshockapp with
|
| Latest commit: |
83ec1ac
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://1983dcd9.openshockapp.pages.dev |
| Branch Preview URL: | https://feature-shocker-menu.openshockapp.pages.dev |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 8038f7c967
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| } | ||
|
|
||
| let { open = $bindable(), userInput = $bindable() }: Props = $props(); | ||
| let redeemPromise = $state<Promise<V2UserSharesListItem> | null>(null); |
There was a problem hiding this comment.
Reintroduce the removed
redeemed state variable
Removing the redeemed declaration leaves onOpenChange and onFormSubmit still assigning to redeemed, which will throw ReferenceError: redeemed is not defined when the dialog closes or after a successful redeem. That breaks the redeem flow at runtime in this component even though only the declaration was deleted in this patch.
Useful? React with 👍 / 👎.
No description provided.