Skip to content

Commit f738a9b

Browse files
committed
remove debug section
1 parent 8743299 commit f738a9b

File tree

1 file changed

+0
-48
lines changed

1 file changed

+0
-48
lines changed

html/index.html

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -108,33 +108,6 @@
108108
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
109109
}
110110

111-
#debug {
112-
margin-top: 2.5rem;
113-
padding: 1.25rem;
114-
background-color: var(--light-gray);
115-
border-radius: 0.5rem;
116-
border: 1px solid var(--border);
117-
display: none;
118-
}
119-
120-
#debug h3 {
121-
margin-bottom: 0.75rem;
122-
font-size: 1.125rem;
123-
color: var(--dark);
124-
}
125-
126-
#debug p {
127-
margin-bottom: 0.5rem;
128-
font-size: 0.875rem;
129-
color: var(--gray);
130-
}
131-
132-
#debug span {
133-
word-break: break-all;
134-
color: var(--dark);
135-
font-family: monospace;
136-
}
137-
138111
@media (max-width: 768px) {
139112
.container {
140113
padding: 1.5rem;
@@ -169,32 +142,11 @@ <h1>Create GitHub App from Manifest</h1>
169142

170143
<button type="submit" class="button">Create GitHub App</button>
171144
</form>
172-
173-
<div id="debug">
174-
<h3>Debug Info:</h3>
175-
<p>Form action: <span id="currentAction"></span></p>
176-
<p>Selected environment: <span id="selectedEnv"></span></p>
177-
</div>
178145
</div>
179146

180147
<script type="text/javascript" src="script.js"></script>
181148
<script type="text/javascript">
182149
initPage();
183-
184-
// Show debug info
185-
document.getElementById('debug').style.display = 'block';
186-
187-
// Update debug info
188-
function updateDebugInfo() {
189-
document.getElementById('currentAction').innerText = document.getElementById('form').action;
190-
document.getElementById('selectedEnv').innerText = document.getElementById('environment').value;
191-
}
192-
193-
// Call it once initially
194-
setTimeout(updateDebugInfo, 1000);
195-
196-
// And whenever the environment changes
197-
document.getElementById('environment').addEventListener('change', updateDebugInfo);
198150
</script>
199151
</body>
200152
</html>

0 commit comments

Comments
 (0)