Skip to content

Commit

Permalink
Fix config name
Browse files Browse the repository at this point in the history
  • Loading branch information
simonhamp authored Mar 28, 2024
1 parent b9bff60 commit 4e9b6d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
->setStripeAccountStatus($account->details_submitted)
->save();

return Route::has(Config::get('stripe_connect.routes.complete'))
? Response::redirectToRoute(Config::get('stripe_connect.routes.complete'))
return Route::has(Config::get('stripe_connect.routes.account.complete'))
? Response::redirectToRoute(Config::get('stripe_connect.routes.account.complete'))
: Response::redirectTo('/');
})->name('return');

Expand Down

0 comments on commit 4e9b6d9

Please sign in to comment.