Fix accidental unwrapped strings (#1826)
This commit is contained in:
parent
d715246e26
commit
a4baf14e4b
4 changed files with 7 additions and 7 deletions
|
@ -250,7 +250,7 @@ export const ProfileListScreenInner = observer(
|
|||
return (
|
||||
<CenteredView sideBorders style={s.hContentRegion}>
|
||||
<Header rkey={rkey} list={list} />
|
||||
{list.error && <ErrorScreen error={list.error} />}
|
||||
{list.error ? <ErrorScreen error={list.error} /> : null}
|
||||
</CenteredView>
|
||||
)
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue