Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Sep 19, 2023
1 parent e5016a2 commit 0b6e254
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions mobile/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ BC_CARS_PAGE_SIZE=8
BC_BOOKINGS_PAGE_SIZE=8
BC_CDN_USERS=https://bookcars.com/cdn/bookcars/users
BC_CDN_CARS=https://bookcars.com/cdn/bookcars/cars
BC_COMAPANY_IMAGE_WIDTH=60
BC_COMAPANY_IMAGE_HEIGHT=30
BC_COMPANY_IMAGE_WIDTH=60
BC_COMPANY_IMAGE_HEIGHT=30
BC_CAR_IMAGE_WIDTH=300
BC_CAR_IMAGE_HEIGHT=200
BC_APP_TYPE=frontend
BC_MINIMUM_AGE=21
BC_MINIMUM_AGE=21
8 changes: 4 additions & 4 deletions mobile/config/env.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import {
BC_BOOKINGS_PAGE_SIZE,
BC_CDN_USERS,
BC_CDN_CARS,
BC_COMAPANY_IMAGE_WIDTH,
BC_COMAPANY_IMAGE_HEIGHT,
BC_COMPANY_IMAGE_WIDTH,
BC_COMPANY_IMAGE_HEIGHT,
BC_CAR_IMAGE_WIDTH,
BC_CAR_IMAGE_HEIGHT,
BC_MINIMUM_AGE,
Expand All @@ -31,8 +31,8 @@ export const BOOKINGS_PAGE_SIZE: number = Number.parseInt(BC_BOOKINGS_PAGE_SIZE)
export const CDN_USERS: string = BC_CDN_USERS
export const CDN_CARS: string = BC_CDN_CARS
export const PAGE_OFFSET: number = 200
export const COMPANY_IMAGE_WIDTH: number = Number.parseInt(BC_COMAPANY_IMAGE_WIDTH) || 60
export const COMPANY_IMAGE_HEIGHT: number = Number.parseInt(BC_COMAPANY_IMAGE_HEIGHT) || 30
export const COMPANY_IMAGE_WIDTH: number = Number.parseInt(BC_COMPANY_IMAGE_WIDTH) || 60
export const COMPANY_IMAGE_HEIGHT: number = Number.parseInt(BC_COMPANY_IMAGE_HEIGHT) || 30
export const CAR_IMAGE_WIDTH: number = Number.parseInt(BC_CAR_IMAGE_WIDTH) || 300
export const CAR_IMAGE_HEIGHT: number = Number.parseInt(BC_CAR_IMAGE_HEIGHT) || 200
export const CAR_OPTION_IMAGE_HEIGHT: number = 85
Expand Down
4 changes: 2 additions & 2 deletions mobile/types/env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ declare module '@env' {
export const BC_BOOKINGS_PAGE_SIZE: string
export const BC_CDN_USERS: string
export const BC_CDN_CARS: string
export const BC_COMAPANY_IMAGE_WIDTH: string
export const BC_COMAPANY_IMAGE_HEIGHT: string
export const BC_COMPANY_IMAGE_WIDTH: string
export const BC_COMPANY_IMAGE_HEIGHT: string
export const BC_CAR_IMAGE_WIDTH: string
export const BC_CAR_IMAGE_HEIGHT: string
export const BC_MINIMUM_AGE: string
Expand Down

0 comments on commit 0b6e254

Please sign in to comment.