Skip to content

Commit 36c8a20

Browse files
committed
fix: Error on StackBlitz
1 parent aee1f43 commit 36c8a20

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client/src/app/app.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
import { TestBed } from '@angular/core/testing';
66
import { AppComponent } from './app.component';
77
import { provideRouter } from '@angular/router';
8-
import { MaterialModule } from 'src/material.module';
8+
import { MaterialModule } from '../material.module';
99

1010
describe('AppComponent', () => {
1111
beforeEach(async () => {

client/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { RouterOutlet } from '@angular/router';
55
import { MaterialModule } from '../material.module';
66
import { ApiService } from '../.api-client/services/api.service';
77
import { Article } from '../.api-client/models/article';
8-
import { environment } from 'src/environments/environment';
8+
import { environment } from '../environments/environment';
99

1010
@Component({
1111
selector: 'app-root',

client/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { importProvidersFrom } from '@angular/core';
22
import { bootstrapApplication } from '@angular/platform-browser';
33
import { provideAnimations } from '@angular/platform-browser/animations';
44
import { AppComponent } from './app/app.component';
5-
import { ApiModule } from 'src/.api-client/api.module';
5+
import { ApiModule } from './.api-client/api.module';
66
import {
77
provideHttpClient,
88
withInterceptorsFromDi,

0 commit comments

Comments
 (0)