diff --git a/editor/resources/index.html b/editor/resources/index.html
index cb6eec7..8b026d1 100644
--- a/editor/resources/index.html
+++ b/editor/resources/index.html
@@ -43,7 +43,6 @@
// can be changed if specified by '?from='
let initialConfig = {
- "html_title": "cloudflare.com | 500: Internal server error",
"title": "Internal server error",
"error_code": 500,
@@ -169,7 +168,6 @@
/* Fill form from config */
function loadConfig(cfg) {
- $('html_title').value = cfg.html_title ?? '';
$('title').value = cfg.title ?? '';
$('error_code').value = cfg.error_code ?? '';
@@ -206,7 +204,6 @@
/* Read config from form inputs */
function readConfig() {
return {
- html_title: $('html_title').value,
title: $('title').value,
error_code: Number($('error_code').value) || 0,
more_information: {
@@ -548,14 +545,6 @@