Skip to content

Commit

Permalink
fix: Error on StackBlitz
Browse files Browse the repository at this point in the history
  • Loading branch information
mugifly committed Jun 6, 2024
1 parent aee1f43 commit 36c8a20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/src/app/app.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
import { TestBed } from '@angular/core/testing';
import { AppComponent } from './app.component';
import { provideRouter } from '@angular/router';
import { MaterialModule } from 'src/material.module';
import { MaterialModule } from '../material.module';

describe('AppComponent', () => {
beforeEach(async () => {
Expand Down
2 changes: 1 addition & 1 deletion client/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { RouterOutlet } from '@angular/router';
import { MaterialModule } from '../material.module';
import { ApiService } from '../.api-client/services/api.service';
import { Article } from '../.api-client/models/article';
import { environment } from 'src/environments/environment';
import { environment } from '../environments/environment';

@Component({
selector: 'app-root',
Expand Down
2 changes: 1 addition & 1 deletion client/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { importProvidersFrom } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import { provideAnimations } from '@angular/platform-browser/animations';
import { AppComponent } from './app/app.component';
import { ApiModule } from 'src/.api-client/api.module';
import { ApiModule } from './.api-client/api.module';
import {
provideHttpClient,
withInterceptorsFromDi,
Expand Down

0 comments on commit 36c8a20

Please sign in to comment.