Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Sep 12, 2023
1 parent e094f48 commit 6b26f10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { createMemoryHistory, createRouter, type Router } from 'vue-router';
import { Subject } from 'rxjs';

import type TrackerService from './tracker.service';
import { type useTrackerService } from './tracker.service';
import { useTrackerService } from './tracker.service';

describe('Tracker Service', () => {
let trackerService: TrackerService;
Expand Down
2 changes: 1 addition & 1 deletion generators/vue/templates/src/main/webapp/app/main.ts.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import '../content/scss/vendor.scss';
import TranslationService from '@/locale/translation.service';
<%_ } _%>
<%_ if (communicationSpringWebsocket) { _%>
import { type useTrackerService } from './admin/tracker/tracker.service';
import { useTrackerService } from './admin/tracker/tracker.service';
<%_ } _%>

const pinia = createPinia()
Expand Down

0 comments on commit 6b26f10

Please sign in to comment.