diff --git a/src/Resources/views/stack.html.twig b/src/Resources/views/stack.html.twig
index f2984743..3c9102a5 100644
--- a/src/Resources/views/stack.html.twig
+++ b/src/Resources/views/stack.html.twig
@@ -7,16 +7,14 @@
{% endif %}
{{ stack.requestMethod }}
- {% apply spaceless %}
-
- {% endapply %}
+
{{ stack.duration|number_format }} ms
{% if stack.responseCode >= 400 and stack.responseCode <= 599 %}
diff --git a/tests/Functional/ProfilerTest.php b/tests/Functional/ProfilerTest.php
index 9a4705d9..15b5ba7f 100644
--- a/tests/Functional/ProfilerTest.php
+++ b/tests/Functional/ProfilerTest.php
@@ -28,7 +28,7 @@ public function testShowProfiler(): void
$client->request('GET', '/_profiler/latest?panel=httplug');
$content = $client->getResponse()->getContent();
$this->assertStringContainsString(<<https://jsonplaceholder.typicode.com/posts/1
+ jsonplaceholder.typicode.com
HTML, $content);
}
}