Skip to content

Commit

Permalink
fix(currencies): use proper base and exponents for MRU and MGA
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahdayan committed Jul 21, 2021
1 parent a7ae310 commit ac2bb8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/currencies/src/iso4217/amendments/168/mga.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import type { Currency } from '../../../types';
*/
export const MGA: Currency<number> = {
code: 'MGA',
base: 10,
exponent: 2,
base: 5,
exponent: 1,
};
4 changes: 2 additions & 2 deletions packages/currencies/src/iso4217/amendments/168/mru.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import type { Currency } from '../../../types';
*/
export const MRU: Currency<number> = {
code: 'MRU',
base: 10,
exponent: 2,
base: 5,
exponent: 1,
};

1 comment on commit ac2bb8d

@vercel
Copy link

@vercel vercel bot commented on ac2bb8d Jul 21, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.