diff --git a/modules/price/commerce_price.module b/modules/price/commerce_price.module
index 8f3f8b8..e7c6a47 100644
--- a/modules/price/commerce_price.module
+++ b/modules/price/commerce_price.module
@@ -27,6 +27,9 @@ function commerce_price_theme() {
  */
 function commerce_price_configurable_language_insert(ConfigurableLanguage $language) {
   // Allow the importer to import any found translations for the new language.
+  if (\Drupal::isConfigSyncing()) {
+    return;
+  }
   $importer = \Drupal::service('commerce_price.currency_importer');
   $importer->importTranslations([$language->getId()]);
 }
