Skip to content

Commit

Permalink
Fix variable name (#4661)
Browse files Browse the repository at this point in the history
Co-authored-by: Dong Lei <donglei@microsoft.com>
  • Loading branch information
peterbozso and boydc2014 authored Nov 5, 2020
1 parent ae4732c commit c2844c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions extensions/samples/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ const boilerplates = getBoilerplates();

export default async (composer: any): Promise<void> => {
// register this publishing method with Composer
for (const temlate of samples) {
await composer.addBotTemplate(temlate);
for (const template of samples) {
await composer.addBotTemplate(template);
}

for (const temlate of boilerplates) {
await composer.addBaseTemplate(temlate);
for (const template of boilerplates) {
await composer.addBaseTemplate(template);
}
};

0 comments on commit c2844c8

Please sign in to comment.