fix: update module configuration imports to use lowercase variable names for consistency

This commit is contained in:
Firman Ramdhani
2026-07-20 14:12:04 +07:00
parent dd18787ee7
commit 6a11ed2420
2 changed files with 6 additions and 6 deletions
@@ -9,7 +9,7 @@
import { apiClient } from '../../../../../../core/lib/api-client'; import { apiClient } from '../../../../../../core/lib/api-client';
import { FullPageRemoteDataServices } from '../../data/full-page.remote.service'; import { FullPageRemoteDataServices } from '../../data/full-page.remote.service';
import { FullPageModuleConfig } from '../constants/full-page.constants'; import { fullPageModuleConfig } from '../constants/full-page.constants';
import { FullPageRemoteDataTransformer } from '../transformers/full-page.remote.transformer'; import { FullPageRemoteDataTransformer } from '../transformers/full-page.remote.transformer';
/** /**
@@ -24,7 +24,7 @@ export const fullPageDataTransformer = new FullPageRemoteDataTransformer();
* It is fully wired with the HTTP client and automatically handles data mapping via the injected transformer. * It is fully wired with the HTTP client and automatically handles data mapping via the injected transformer.
*/ */
export const fullPageDataService = new FullPageRemoteDataServices(apiClient, { export const fullPageDataService = new FullPageRemoteDataServices(apiClient, {
apiUrl: FullPageModuleConfig.apiUrl, apiUrl: fullPageModuleConfig.apiUrl,
moduleKey: FullPageModuleConfig.moduleKey, moduleKey: fullPageModuleConfig.moduleKey,
transformer: fullPageDataTransformer, transformer: fullPageDataTransformer,
}); });
@@ -9,7 +9,7 @@
import { apiClient } from '../../../../../../core/lib/api-client'; import { apiClient } from '../../../../../../core/lib/api-client';
import { SinglePageRemoteDataServices } from '../../data/single-page.remote.service'; import { SinglePageRemoteDataServices } from '../../data/single-page.remote.service';
import { SinglePageModuleConfig } from '../constants/single-page.constants'; import { singlePageModuleConfig } from '../constants/single-page.constants';
import { SinglePageRemoteDataTransformer } from '../transformers/single-page.remote.transformer'; import { SinglePageRemoteDataTransformer } from '../transformers/single-page.remote.transformer';
/** /**
@@ -24,7 +24,7 @@ export const singlePageDataTransformer = new SinglePageRemoteDataTransformer();
* It is fully wired with the HTTP client and automatically handles data mapping via the injected transformer. * It is fully wired with the HTTP client and automatically handles data mapping via the injected transformer.
*/ */
export const singlePageDataService = new SinglePageRemoteDataServices(apiClient, { export const singlePageDataService = new SinglePageRemoteDataServices(apiClient, {
apiUrl: SinglePageModuleConfig.apiUrl, apiUrl: singlePageModuleConfig.apiUrl,
moduleKey: SinglePageModuleConfig.moduleKey, moduleKey: singlePageModuleConfig.moduleKey,
transformer: singlePageDataTransformer, transformer: singlePageDataTransformer,
}); });