fix(subs): also redirect to subs after gift sub

This commit is contained in:
Kalista Payne
2024-10-24 13:57:27 -05:00
parent 690163a0de
commit e3ae9a2d67
+1 -1
View File
@@ -29,7 +29,7 @@ export default function handleRedirect (to, from, next) {
});
}
if (newAppState.paymentType === 'subscription') {
if (newAppState.paymentType.contains('subscription')) {
return next({ name: 'subscription' });
}