mirror of
https://github.com/recloudstream/website.git
synced 2024-08-15 03:18:45 +00:00
oopsie
This commit is contained in:
parent
6b75370283
commit
1a1bb27773
1 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ const IndexPage = () => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{(!repos && !setHadError) &&
|
{(!repos && !hadError) &&
|
||||||
<div class="alert shadow-lg w-full mx-10 md:w-2/3 mb-5">
|
<div class="alert shadow-lg w-full mx-10 md:w-2/3 mb-5">
|
||||||
<div>
|
<div>
|
||||||
<span>Fetching data...</span>
|
<span>Fetching data...</span>
|
||||||
|
@ -54,7 +54,7 @@ const IndexPage = () => {
|
||||||
{repos.map((it, index) => <RepoCard repoData={it} key={index} isFirst={index===0}/>)}
|
{repos.map((it, index) => <RepoCard repoData={it} key={index} isFirst={index===0}/>)}
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
{(!repos && setHadError) &&
|
{(!repos && hadError) &&
|
||||||
<div class="alert alert-error shadow-lg w-full mx-10 md:w-2/3 mb-5">
|
<div class="alert alert-error shadow-lg w-full mx-10 md:w-2/3 mb-5">
|
||||||
<div>
|
<div>
|
||||||
<BiErrorAlt />
|
<BiErrorAlt />
|
||||||
|
|
Loading…
Reference in a new issue