Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: move el credit card information to the expected location #484

Merged
merged 5 commits into from
Feb 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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