-
-
Notifications
You must be signed in to change notification settings - Fork 448
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
QF-613-word-by-word-in-settings-dynamic-list (#2185)
* change static list to dynamic list * address PR comments * Use lodash/uniqBy * remove util function and test cases * fix loading and error states * remove unused imports --------- Co-authored-by: Osama Sayed <[email protected]>
- Loading branch information
1 parent
a43a78d
commit eed82f7
Showing
3 changed files
with
39 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
import AvailableTranslation from './AvailableTranslation'; | ||
import TranslatedName from './TranslatedName'; | ||
|
||
interface AvailableWordByWordTranslation extends AvailableTranslation { | ||
isoCode?: string; | ||
id: number; | ||
name: string; | ||
authorName: string; | ||
slug: string; | ||
languageName: string; | ||
isoCode: string; | ||
translatedName: TranslatedName; | ||
} | ||
export default AvailableWordByWordTranslation; |