We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af9cdcf commit c23a828Copy full SHA for c23a828
src/app/(authed)/(project-doc)/[...slug]/page.tsx
@@ -36,7 +36,9 @@ export default function Page() {
36
{project && (!version || !specification) && !refreshing &&
37
<ErrorMessage text={`The selected ${!version ? "branch or tag" : "specification"} was not found.`}/>
38
}
39
- {!project && refreshing && <LoadingIndicator /> }
+ {!project && !version && !specification && refreshing &&
40
+ <LoadingIndicator />
41
+ }
42
{!project && !refreshing && <NotFound/>}
43
</>
44
)
0 commit comments