fix: Stripe e2e regression (#13062)

* fix: Stripe e2e regression

* chore: remove
This commit is contained in:
Erik 2024-01-07 02:47:01 -03:00 committed by GitHub
parent 48d4725e10
commit d76060e037
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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>