diff --git a/CHANGELOG.md b/CHANGELOG.md index ee6a76da0..8fe85c6fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ All notable, unreleased changes to this project will be documented in this file. - Fix not closed address update modal with two confirmations - #699 by @orzechdev - Update schema with PositiveDecimal type - #695 by @AlicjaSzu - Restyle side menu - #697 by @dominik-zeglen +- Add error info when fetching taxes - #701 by @dominik-zeglen ## 2.10.1 diff --git a/src/taxes/views/CountryList.tsx b/src/taxes/views/CountryList.tsx index ff209e950..69b9986ea 100644 --- a/src/taxes/views/CountryList.tsx +++ b/src/taxes/views/CountryList.tsx @@ -35,6 +35,11 @@ export const CountryList: React.FC = () => { defaultMessage: "Successfully fetched tax rates" }) }); + } else { + notify({ + status: "error", + text: intl.formatMessage(commonMessages.somethingWentWrong) + }); } };