Skip to content

Commit

Permalink
fix typo in service name
Browse files Browse the repository at this point in the history
  • Loading branch information
x87 committed May 18, 2023
1 parent c3565a0 commit 5a266d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion editor/src/app/analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ declare var gtag: (...args: unknown[]) => {};
@Injectable({
providedIn: 'root',
})
export class AnalyticService {
export class AnalyticsService {
constructor(@Inject(CONFIG) private _config: Config) {}

trackEvent(eventName: string, data: object) {
Expand Down
4 changes: 2 additions & 2 deletions editor/src/app/state/ui/effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ import { GameFacade } from '../game/facade';
import { EnumsFacade } from '../enums/facade';
import { loadEnumsSuccess } from '../enums/actions';
import { ArticlesFacade } from '../articles/facade';
import { AnalyticService } from '../../analytics';
import { AnalyticsService } from '../../analytics';

@Injectable({ providedIn: 'root' })
export class UiEffects {
Expand Down Expand Up @@ -488,7 +488,7 @@ export class UiEffects {
private _game: GameFacade,
private _enums: EnumsFacade,
private _articles: ArticlesFacade,
private _analytics: AnalyticService,
private _analytics: AnalyticsService,
@Inject(DOCUMENT) private _d: Document
) {}
}

0 comments on commit 5a266d2

Please sign in to comment.