Fix: don't show empty state when loading
This commit is contained in:
parent
f445ee8b9c
commit
67ea0dc9b6
2 changed files with 3 additions and 6 deletions
|
@ -39,6 +39,7 @@
|
||||||
"react/jsx-indent": 0,
|
"react/jsx-indent": 0,
|
||||||
"react-hooks/exhaustive-deps": "warn",
|
"react-hooks/exhaustive-deps": "warn",
|
||||||
"react-hooks/rules-of-hooks": "error",
|
"react-hooks/rules-of-hooks": "error",
|
||||||
|
"react/no-unescaped-entities": 0,
|
||||||
"space-before-function-paren": [
|
"space-before-function-paren": [
|
||||||
"error",
|
"error",
|
||||||
{
|
{
|
||||||
|
|
|
@ -133,11 +133,7 @@ function ClaimListDiscover(props: Props) {
|
||||||
<I18nMessage
|
<I18nMessage
|
||||||
tokens={{
|
tokens={{
|
||||||
trending: (
|
trending: (
|
||||||
<Button
|
<Button button="link" label={__('trending for everyone')} navigate={'/?type=trending&sort=everyone'} />
|
||||||
button="link"
|
|
||||||
label={__("trending for everyone")}
|
|
||||||
navigate={'/?type=trending&sort=everyone'}
|
|
||||||
/>
|
|
||||||
),
|
),
|
||||||
discover: <Button button="link" label={__('discover some channels!')} navigate={'/$/following'} />,
|
discover: <Button button="link" label={__('discover some channels!')} navigate={'/$/following'} />,
|
||||||
}}
|
}}
|
||||||
|
@ -177,7 +173,7 @@ function ClaimListDiscover(props: Props) {
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
const emptyState = personalSort === SEARCH_SORT_CHANNELS && !hasContent ? noChannels : noResults;
|
const emptyState = !loading && (personalSort === SEARCH_SORT_CHANNELS && !hasContent ? noChannels : noResults);
|
||||||
|
|
||||||
function getSearch() {
|
function getSearch() {
|
||||||
let search = `?`;
|
let search = `?`;
|
||||||
|
|
Loading…
Reference in a new issue