Skip to content

Commit

Permalink
Fix conditional statement in getServiceTemplates function
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed Apr 8, 2024
1 parent e1b09f4 commit 08f6367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap/helpers/shared.php
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ function sslip(Server $server)

function getServiceTemplates()
{
if (!isDev()) {
if (isDev()) {
$services = File::get(base_path('templates/service-templates.json'));
$services = collect(json_decode($services))->sortKeys();
} else {
Expand Down

0 comments on commit 08f6367

Please sign in to comment.