Skip to content

Commit 2e9098a

Browse files
committed
chore(examples): fix extend example app
1 parent 0080535 commit 2e9098a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/extend/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ app.use(express.static(path.join(__dirname, 'public')))
1313
const blocks = {};
1414

1515
hbs.registerHelper('extend', function(name, context) {
16-
const block = blocks[name];
16+
let block = blocks[name];
1717
if (!block) {
1818
block = blocks[name] = [];
1919
}

0 commit comments

Comments
 (0)