Skip to content

Commit

Permalink
fix: move el credit card information to the expected location (faker-…
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT authored and demipel8 committed Mar 11, 2022
1 parent ee83b3a commit c8445e7
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { FinanceDefinitions } from '../../../definitions';
import type { FinanceDefinitions } from '../../../../definitions';
import american_express from './american_express';
import discover from './discover';
import maestro from './maestro';
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 3 additions & 1 deletion src/locales/el/finance/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
*/
import type { FinanceDefinitions } from '../../..';
import account_type from './account_type';
import credit_card from './credit_card';
import currency from './currency';
import transaction_type from './transaction_type';

const finance: Partial<FinanceDefinitions> = {
const finance: FinanceDefinitions = {
account_type,
credit_card,
currency,
transaction_type,
};
Expand Down
2 changes: 0 additions & 2 deletions src/locales/el/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import business from './business';
import cell_phone from './cell_phone';
import commerce from './commerce';
import company from './company';
import credit_card from './credit_card';
import finance from './finance';
import hacker from './hacker';
import internet from './internet';
Expand All @@ -27,7 +26,6 @@ const el: LocaleDefinition = {
cell_phone,
commerce,
company,
credit_card,
finance,
hacker,
internet,
Expand Down

0 comments on commit c8445e7

Please sign in to comment.