Skip to content

Commit 4829cf4

Browse files
committed
Bug fix.
1 parent fb9da0a commit 4829cf4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib_components/components/NeonEnvironment/NeonEnvironment.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export interface INeonEnvironment {
8888
getAuthApiPath: Record<string, () => string>;
8989
getDownloadApiPath: Record<string, () => string>;
9090

91-
getDataProductsTaxonTypesPath: () => string;
91+
getDataProductTaxonTypesPath: () => string;
9292
getTaxonTypeDataProductsPath: () => string;
9393

9494
getAuthPath: Record<string, () => string>;
@@ -192,7 +192,7 @@ const NeonEnvironment: INeonEnvironment = {
192192
getAuth0: () => '/consumer/topic/auth0',
193193
},
194194

195-
getDataProductsTaxonTypesPath: (): string => `${NeonEnvironment.getFullApiPath('taxonomy')}/types`,
195+
getDataProductTaxonTypesPath: (): string => `${NeonEnvironment.getFullApiPath('taxonomy')}/types`,
196196
getTaxonTypeDataProductsPath: (): string => `${NeonEnvironment.getFullApiPath('taxonomy')}/products`,
197197

198198
getVisusProductsBaseUrl: (): Undef<string> => process.env.REACT_APP_NEON_VISUS_PRODUCTS_BASE_URL,

0 commit comments

Comments
 (0)