|
|
@@ -151,13 +151,15 @@ const RepoList: React.FC<Props> = ({
|
|
|
}
|
|
|
|
|
|
if (accessData.accounts?.length === 0) {
|
|
|
- <LoadingWrapper>
|
|
|
- No connected Github repos found. You can
|
|
|
- <A href={"/api/integrations/github-app/install"}>
|
|
|
- Install Porter in more repositories
|
|
|
- </A>
|
|
|
- .
|
|
|
- </LoadingWrapper>;
|
|
|
+ return (
|
|
|
+ <LoadingWrapper>
|
|
|
+ No connected Github repos found. You can
|
|
|
+ <A href={"/api/integrations/github-app/install"}>
|
|
|
+ Install Porter in more repositories
|
|
|
+ </A>
|
|
|
+ .
|
|
|
+ </LoadingWrapper>
|
|
|
+ );
|
|
|
}
|
|
|
}
|
|
|
|