From c7fd937050e95f8dbd20d5a81c3c274dfdd22c68 Mon Sep 17 00:00:00 2001 From: ocBruno Date: Fri, 31 Jan 2020 07:53:40 -0300 Subject: [PATCH] fix(navbar): add missing i18n t function fix #1668 --- src/components/Navbar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 28661f6ec4..4e69a3c05a 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -18,8 +18,8 @@ const Navbar = () => { bg="dark" variant="dark" search={{ - buttonText: 'actions.search', - placeholderText: 'actions.search', + buttonText: t('actions.search'), + placeholderText: t('actions.search'), onClickButton: () => undefined, onChangeInput: () => undefined, }}