We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f99db18 + c23a828 commit 6e06dceCopy full SHA for 6e06dce
src/app/(authed)/(project-doc)/[...slug]/page.tsx
@@ -36,8 +36,8 @@ export default function Page() {
36
{project && (!version || !specification) && !refreshing &&
37
<ErrorMessage text={`The selected ${!version ? "branch or tag" : "specification"} was not found.`}/>
38
}
39
- {refreshing && // project data is currently being fetched - show loading indicator
40
- <LoadingIndicator />
+ {!project && !version && !specification && refreshing &&
+ <LoadingIndicator />
41
42
{!project && !refreshing && <NotFound/>}
43
</>
0 commit comments