From 008893b911c354ea70fbb4ceacefe2dafc7567b9 Mon Sep 17 00:00:00 2001 From: Stanislas Signoud Date: Tue, 9 Jan 2024 23:37:15 +0100 Subject: Internationalize more strings (#2440) Co-authored-by: Ansh --- src/view/com/post-thread/PostThread.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/view/com/post-thread/PostThread.tsx') diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx index 6cd1f3551..cb7fd3f41 100644 --- a/src/view/com/post-thread/PostThread.tsx +++ b/src/view/com/post-thread/PostThread.tsx @@ -222,7 +222,11 @@ function PostThreadLoaded({ const renderItem = React.useCallback( ({item, index}: {item: YieldedItem; index: number}) => { if (item === TOP_COMPONENT) { - return isTablet ? : null + return isTablet ? ( + + ) : null } else if (item === PARENT_SPINNER) { return ( @@ -393,7 +397,7 @@ function PostThreadBlocked() { style={[pal.link as FontAwesomeIconStyle, s.mr5]} size={14} /> - Back + Back -- cgit 1.4.1