Skip to content

Commit

Permalink
Merge pull request #13 from mahavishnup/main
Browse files Browse the repository at this point in the history
telescope and horizon url fix's
  • Loading branch information
stephenjude authored May 23, 2023
2 parents 3a5f413 + 93f3f44 commit 524fcc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FilamentDebugger.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static function getTelescopeUrl(): NavigationItem
->label('Telescope')
->sort(1)
->url(
'/'.config('telescope.domain').config('telescope.path')
config('telescope.domain').'/'.config('telescope.path')
)
->openUrlInNewTab();
}
Expand All @@ -48,7 +48,7 @@ public static function getHorizonUrl(): NavigationItem
->label('Horizon')
->sort(2)
->url(
'/'.config('horizon.domain').config('horizon.path')
config('horizon.domain').'/'.config('horizon.path')
)
->openUrlInNewTab();
}
Expand Down

0 comments on commit 524fcc0

Please sign in to comment.