fix: Stripe e2e regression (#13062)

* fix: Stripe e2e regression

* chore: remove
This commit is contained in:
Erik
2024-01-07 05:47:01 +00:00
committed by GitHub
parent 48d4725e10
commit d76060e037
+1 -2
View File
@@ -94,7 +94,6 @@ export default function AppCard({
{app?.isInstalled || app.credentialOwner ? (
<div className="ml-auto flex items-center">
<Switch
data-testid="app-switch"
disabled={!app.enabled || managedDisabled || disableSwitch}
onCheckedChange={(enabled) => {
if (switchOnClick) {
@@ -104,7 +103,7 @@ export default function AppCard({
}}
checked={switchChecked}
LockedIcon={LockedIcon}
data-testId={`${app.slug}-app-switch`}
data-testid={`${app.slug}-app-switch`}
tooltip={switchTooltip}
/>
</div>