Skip to content

Commit

Permalink
fix: fix bicycle_types files being named incorrectly (#477)
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT committed Feb 14, 2022
1 parent e6bffb7 commit 7a2a522
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/locales/en/vehicle/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
* Run 'pnpm run generate:locales' to update.
*/
import type { VehicleDefinitions } from '../../..';
import bicycle from './bicycle';
import bicycle_type from './bicycle_type';
import fuel from './fuel';
import manufacturer from './manufacturer';
import model from './model';
import type_ from './type';

const vehicle = {
bicycle,
const vehicle: VehicleDefinitions = {
bicycle_type,
fuel,
manufacturer,
model,
type: type_,
} as Partial<VehicleDefinitions>;
};

export default vehicle;
File renamed without changes.
8 changes: 4 additions & 4 deletions src/locales/ur/vehicle/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
* Run 'pnpm run generate:locales' to update.
*/
import type { VehicleDefinitions } from '../../..';
import bicycle from './bicycle';
import bicycle_type from './bicycle_type';
import fuel from './fuel';
import manufacturer from './manufacturer';
import model from './model';
import type_ from './type';

const vehicle = {
bicycle,
const vehicle: VehicleDefinitions = {
bicycle_type,
fuel,
manufacturer,
model,
type: type_,
} as Partial<VehicleDefinitions>;
};

export default vehicle;

0 comments on commit 7a2a522

Please sign in to comment.