diff --git a/frontend/src/container/ErrorDetails/index.tsx b/frontend/src/container/ErrorDetails/index.tsx
index ff27641c64..33a86f9f50 100644
--- a/frontend/src/container/ErrorDetails/index.tsx
+++ b/frontend/src/container/ErrorDetails/index.tsx
@@ -1,3 +1,5 @@
+import './styles.scss';
+
import { Button, Divider, Space, Typography } from 'antd';
import getNextPrevId from 'api/errors/getNextPrevId';
import Editor from 'components/Editor';
@@ -161,7 +163,9 @@ function ErrorDetails(props: ErrorDetailsProps): JSX.Element {
{t('stack_trace')}
- {}} value={stackTraceValue} readOnly />
+
+
+
diff --git a/frontend/src/container/ErrorDetails/styles.scss b/frontend/src/container/ErrorDetails/styles.scss
new file mode 100644
index 0000000000..31194b488f
--- /dev/null
+++ b/frontend/src/container/ErrorDetails/styles.scss
@@ -0,0 +1,3 @@
+.error-container {
+ height: 50vh;
+}