Skip to content

Commit

Permalink
Make prod unsafe
Browse files Browse the repository at this point in the history
  • Loading branch information
ukeloop authored Sep 21, 2024
1 parent 4e99ca4 commit 543f48d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EnvironmentIndicatorPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ public static function make(): static
});

$plugin->showBadge(fn () => match (app()->environment()) {
'production', 'prod' => false,
'production' => false,
default => true,
});

$plugin->showBorder(fn () => match (app()->environment()) {
'production', 'prod' => false,
'production' => false,
default => true,
});

Expand Down

0 comments on commit 543f48d

Please sign in to comment.