diff --git a/src/index.js b/src/index.js
index bd36d34..79ea6ed 100644
--- a/src/index.js
+++ b/src/index.js
@@ -44,24 +44,6 @@ app.engine('handlebars', handlebars({
${htmlRight}
`;
- },
- customCheckbox(type) {
- switch(type) {
- case 'completed':
- return `
-
- `;
- case 'started':
- return `
-
- `;
- default:
- return '';
- }
}
}
}));
diff --git a/views/partials/custom-checkbox.handlebars b/views/partials/custom-checkbox.handlebars
deleted file mode 100644
index 1f749bc..0000000
--- a/views/partials/custom-checkbox.handlebars
+++ /dev/null
@@ -1 +0,0 @@
-{{{ customCheckbox status }}}
\ No newline at end of file
diff --git a/views/partials/progress-list.handlebars b/views/partials/progress-list.handlebars
index 032a7e1..005b94f 100644
--- a/views/partials/progress-list.handlebars
+++ b/views/partials/progress-list.handlebars
@@ -15,21 +15,28 @@
{{#each data.progress.completed}}
- {{> custom-checkbox status="completed" }}
+
{{ this }}
{{/each}}
{{#each data.progress.started}}
- {{> custom-checkbox status="started" }}
+
{{ this }}
{{/each}}
{{#each data.progress.not_started}}
- {{> custom-checkbox status="not_started" }}
+
{{ this }}
{{/each}}