Skip to content

Commit

Permalink
Fixed invalid base URL variable usage
Browse files Browse the repository at this point in the history
  • Loading branch information
codeaid committed Aug 16, 2024
1 parent d627d68 commit f46f88b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/config/routing.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Base URL values for all base pages
import { baseUrl } from 'config/app';
import { basePath } from 'config/app';

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

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

0 comments on commit f46f88b

Please sign in to comment.