Skip to content

Commit

Permalink
revert useTranslator
Browse files Browse the repository at this point in the history
  • Loading branch information
noamilsh committed Jul 10, 2022
1 parent 113e925 commit 72d409a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"title": "Pull Request ",
"searchPlaceholder": "Search",
"description": "עוזרת לכם להיכנס לפרוייקטי קוד פתוח ולתרום להם ע\"י יצירת סביבה תומכת ובטוחה וחיבור עם מנטורים בעלי ניסיון שאכפת להם שתצליחו",
"contribute": "מוזמנים לתרום לפרויקט של הקהילה או לפרויקטים שרצים תחתיה בסדנאות שרצות אחת לחודש לתרומה לקוד פתוח.\nבנוסף מוזמנים להצטרף להרצאות העשרה, לשתף שאלות ובקשות לעזרה ולשתף מהידע שלכם בקבוצה שלנו בפייסבוק.\nאם אתם רוצים להצטרף כמנטורים של פרויקט,\nמוזמנים למלא את הטופס הבא:"
}
7 changes: 1 addition & 6 deletions components/searchBar/SearchBar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import React, { useCallback, ReactElement } from 'react';
import { useTranslator } from '../language/useTranslator';
import languageFile from '../main-page-description/MainPageDescription.language.json';
import styles from './SearchBar.module.scss';

interface Props {
Expand All @@ -20,9 +18,6 @@ const SearchBar = (props: Props): ReactElement => {
const { handelSearch, placeholder } = props;

const debounceHandler = useCallback(debounce(handelSearch, 1000), []);
const placeholderText = placeholder
? placeholder
: useTranslator('searchPlaceholder', languageFile);

const handleOnChange = async (event) => {
const { value } = event.currentTarget;
Expand All @@ -34,7 +29,7 @@ const SearchBar = (props: Props): ReactElement => {
<input
onChange={handleOnChange}
type="text"
placeholder={placeholderText}
placeholder={placeholder ? placeholder : 'Search'}
className={styles.textBox}
/>
<svg
Expand Down

0 comments on commit 72d409a

Please sign in to comment.