We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00c4f27 commit 1a7e067Copy full SHA for 1a7e067
apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/(chainPage)/components/client/PayModal.tsx
@@ -42,7 +42,8 @@ export function PayModalButton(props: {
42
theme={getSDKTheme(theme === "dark" ? "dark" : "light")}
43
className="!w-auto"
44
payOptions={{
45
- onPurchaseSuccess(info) {
+ // biome-ignore lint/suspicious/noExplicitAny: false positive
46
+ onPurchaseSuccess(info: any) {
47
if (
48
info.type === "crypto" &&
49
info.status.status !== "NOT_FOUND"
0 commit comments