Remove unused function

This commit is contained in:
Augusto Gunsch 2021-12-26 00:15:08 -03:00
parent fd846457af
commit 194aaa5893
No known key found for this signature in database
GPG Key ID: F7EEFE29825C72DC
1 changed files with 0 additions and 8 deletions

View File

@ -162,11 +162,3 @@ function generateHtml(data) {
return html;
}
function listForms(data) {
html += '<ul>';
data.forms.map(form => {
html += `<li>${form.form}</li>`;
})
html += '</ul>';
}