Skip to content

Commit f46f88b

Browse files
committed
Fixed invalid base URL variable usage
1 parent d627d68 commit f46f88b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/config/routing.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// Base URL values for all base pages
2-
import { baseUrl } from 'config/app';
2+
import { basePath } from 'config/app';
33

4-
export const baseUrlAnimals = baseUrl + '/animals';
5-
export const baseUrlFirearms = baseUrl + '/firearms';
6-
export const baseUrlLifeCycle = baseUrl + '/life-cycle';
4+
export const baseUrlAnimals = basePath + '/animals';
5+
export const baseUrlFirearms = basePath + '/firearms';
6+
export const baseUrlLifeCycle = basePath + '/life-cycle';
77

88
// Base URL values for all map pages
9-
export const baseUrlAfrica = baseUrl + '/africa';
10-
export const baseUrlAlaska = baseUrl + '/alaska';
11-
export const baseUrlFinland = baseUrl + '/lintukoto';
12-
export const baseUrlIdaho = baseUrl + '/nez-perce-valley';
13-
export const baseUrlNewZealand = baseUrl + '/new-zealand';
14-
export const baseUrlTransylvania = baseUrl + '/transylvania';
9+
export const baseUrlAfrica = basePath + '/africa';
10+
export const baseUrlAlaska = basePath + '/alaska';
11+
export const baseUrlFinland = basePath + '/lintukoto';
12+
export const baseUrlIdaho = basePath + '/nez-perce-valley';
13+
export const baseUrlNewZealand = basePath + '/new-zealand';
14+
export const baseUrlTransylvania = basePath + '/transylvania';

0 commit comments

Comments
 (0)