When using the AMD format, the following is generated as the AMD module definition: ``` javascript define([ './CategoryChooser.html' ], function ( CategoryChooser ) { 'use strict'; ``` it should be: ``` javascript define([ './CategoryChooser' ], function ( CategoryChooser ) { 'use strict'; ```