Skip to content

Commit 6c9966b

Browse files
committed
chore: remove import from config module as it's already present in root module
1 parent eeb20fd commit 6c9966b

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/app/config.module.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
import { NgModule } from '@angular/core';
2-
import {
3-
ALTERNATE_COLOR_PALETTES,
4-
APP_TITLE,
5-
DEFAULT_COLOR_PALETTE,
6-
GLOBAL_HEADER_HEIGHT,
7-
UserTelemetryModule
8-
} from '@hypertrace/common';
2+
import { ALTERNATE_COLOR_PALETTES, APP_TITLE, DEFAULT_COLOR_PALETTE, GLOBAL_HEADER_HEIGHT } from '@hypertrace/common';
93
import { GRAPHQL_OPTIONS } from '@hypertrace/graphql-client';
104
import { ENTITY_METADATA, RED_COLOR_PALETTE } from '@hypertrace/observability';
115
import { environment } from '../environments/environment';
126
import { entityMetadata } from './entity-metadata';
137
import { FeatureResolverModule } from './shared/feature-resolver/feature-resolver.module';
148

159
@NgModule({
16-
imports: [FeatureResolverModule, UserTelemetryModule.forRoot([])],
10+
imports: [FeatureResolverModule],
1711
providers: [
1812
{
1913
provide: GRAPHQL_OPTIONS,

0 commit comments

Comments
 (0)