react-i18nify
Advanced tools
Comparing version 2.1.1 to 2.1.2
@@ -65,3 +65,3 @@ "use strict"; | ||
if (translations[key]) { | ||
if (translations[key] != null) { | ||
return translations[key]; | ||
@@ -68,0 +68,0 @@ } |
{ | ||
"name": "react-i18nify", | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"description": "Simple i18n translation and localization components and helpers for React applications.", | ||
@@ -5,0 +5,0 @@ "main": "./build/index.js", |
@@ -46,3 +46,3 @@ import React from 'react'; | ||
} | ||
if (translations[key]) { | ||
if (translations[key] != null) { | ||
return translations[key]; | ||
@@ -49,0 +49,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44637