Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenjude authored and github-actions[bot] committed Jun 20, 2024
1 parent d6cbc18 commit 9b062ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/Commands/FilamentJetstreamCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public function handle(): int
return self::FAILURE;
}


$this->info('Installing Jetstream components started');
$this->call('jetstream:install', [
'stack' => 'livewire',
Expand Down
6 changes: 3 additions & 3 deletions stubs/App/Providers/Filament/AppPanelProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function panel(Panel $panel): Panel
MenuItem::make()
->label('Profile')
->icon('heroicon-o-user-circle')
->url(fn() => $this->shouldRegisterMenuItem()
->url(fn () => $this->shouldRegisterMenuItem()
? url(EditProfile::getUrl())
: url($panel->getPath())),
])
Expand Down Expand Up @@ -89,7 +89,7 @@ public function panel(Panel $panel): Panel
MenuItem::make()
->label('API Tokens')
->icon('heroicon-o-key')
->url(fn() => $this->shouldRegisterMenuItem()
->url(fn () => $this->shouldRegisterMenuItem()
? url(ApiTokens::getUrl())
: url($panel->getPath())),
]);
Expand All @@ -104,7 +104,7 @@ public function panel(Panel $panel): Panel
MenuItem::make()
->label('Team Settings')
->icon('heroicon-o-cog-6-tooth')
->url(fn() => $this->shouldRegisterMenuItem()
->url(fn () => $this->shouldRegisterMenuItem()
? url(EditTeam::getUrl())
: url($panel->getPath())),
]);
Expand Down

0 comments on commit 9b062ce

Please sign in to comment.