Skip to content

Commit

Permalink
Fix imports (#25780)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriellsh committed Jun 7, 2022
1 parent 727d250 commit 9743326
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions apps/meteor/app/ui/client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import './lib/parentTemplate';
import './lib/codeMirror';
import './lib/textarea-cursor';
import './views/app/burger.html';
import './views/app/home.html';
import './views/app/notAuthorized.html';
import './views/app/roomSearch.html';
import './views/app/userSearch.html';
import './views/app/burger';
Expand Down
5 changes: 3 additions & 2 deletions apps/meteor/client/startup/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import toastr from 'toastr';
import { KonchatNotification } from '../../app/ui/client';
import { APIClient } from '../../app/utils/client';
import { appLayout } from '../lib/appLayout';
import { createTemplateForComponent } from '../lib/portals/createTemplateForComponent';
import { dispatchToastMessage } from '../lib/toast';
import { handleError } from '../lib/utils/handleError';
import BlazeTemplate from '../views/root/BlazeTemplate';
Expand Down Expand Up @@ -120,7 +121,7 @@ FlowRouter.route('/home', {

appLayout.render(
<MainLayout>
<BlazeTemplate template='home' />
<BlazeTemplate template={HomePage} />
</MainLayout>,
);
});
Expand All @@ -130,7 +131,7 @@ FlowRouter.route('/home', {

appLayout.render(
<MainLayout>
<BlazeTemplate template='home' />
<BlazeTemplate template={HomePage} />
</MainLayout>,
);
},
Expand Down

0 comments on commit 9743326

Please sign in to comment.