Skip to content

Commit

Permalink
fix: remove unnecesary route
Browse files Browse the repository at this point in the history
  • Loading branch information
victormendoza96 committed Aug 28, 2024
1 parent ad72ef0 commit d59b59f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions app/Http/Controllers/OneclickMallDeferredController.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,9 @@ public function finishInscription(Request $request)
if ($resp->responseCode == self::REJECTED) {
$view = 'oneclick-mall-deferred.rejected';
$data = ["resp" => $resp, "token" => $token];
return view('oneclick-mall-deferred.rejected', ["resp" => $resp, "token" => $token]);
} elseif ($resp->responseCode == self::TIMEOUT) {
$view = 'oneclick-mall-deferred.timeout';
$data = ["resp" => $resp];
return view('oneclick-mall-deferred.timeout', ["resp" => $resp]);
} else {
$table = [
"username" => $userName,
Expand Down

0 comments on commit d59b59f

Please sign in to comment.