Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
inmanturbo authored and github-actions[bot] committed Jun 24, 2024
1 parent 917eebf commit 38a1bf2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions stubs/navigation/app/Http/Controllers/TeamController.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ class TeamController extends Controller
/**
* Show the team management screen.
*
* @param \Illuminate\Http\Request $request
* @param int $teamId
* @return \Illuminate\View\View
*/
public function show(Request $request, $teamUUID)
{
$team = Jetstream::newTeamModel()->where('uuid',$teamUUID)->firstOrFail();
$team = Jetstream::newTeamModel()->where('uuid', $teamUUID)->firstOrFail();

if (Gate::denies('view', $team)) {
abort(403);
Expand Down

0 comments on commit 38a1bf2

Please sign in to comment.