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 3223beb commit 2ee0ec1Copy full SHA for 2ee0ec1
packages/app-store/stripepayment/components/EventTypeAppCardInterface.tsx
@@ -37,15 +37,16 @@ const EventTypeAppCard: EventTypeAppCardComponent = function EventTypeAppCard({
37
.trim();
38
return (
39
<AppCard
40
- returnTo={WEBAPP_URL + pathname}
+ returnTo={WEBAPP_URL + pathname + "?tabName=apps"}
41
setAppData={setAppData}
42
app={app}
43
disableSwitch={disabled}
44
LockedIcon={LockedIcon}
45
switchChecked={requirePayment}
46
switchOnClick={(enabled) => {
47
setRequirePayment(enabled);
48
- }}>
+ }}
49
+ teamId={eventType.team?.id || undefined}>
50
<>
51
{recurringEventDefined && (
52
<Alert className="mt-2" severity="warning" title={t("warning_recurring_event_payment")} />
0 commit comments