Remove unused return type

This commit is contained in:
Travis Ralston 2020-08-18 10:51:30 -06:00
parent d9e7253561
commit 323ebdfac8

View file

@ -153,7 +153,7 @@ export function _t(text: string, variables?: IVariables, tags?: Tags): string |
}
}
export function _tSasV1(emoji: string): string | React.ReactNode {
export function _tSasV1(emoji: string): string {
const name = SASEmojiV1.getNameFor(emoji);
return _t(name);
}