Skip to content

Commit

Permalink
chore(client): fix minor issues (#312)
Browse files Browse the repository at this point in the history
* chore(client): fix minor issues

* chore(client): upd error message
  • Loading branch information
Akirtovskis committed Mar 21, 2021
1 parent 58ce37f commit afee3c3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion client/src/modules/webhooks/Webhooks.tsx
Expand Up @@ -71,7 +71,11 @@ export const Webhooks = ({ appId }: AppDomainProps) => {
</Grid>
<Text color="gray.400" fontSize="sm">
For more info head to{' '}
<Link color="blue.400" href="https://ledokku.com" isExternal>
<Link
color="blue.400"
href="https://ledokku.com/docs/setting-up-git-webhooks#github-repository-webhooks-setup"
isExternal
>
Webhooks setup guide
</Link>
</Text>
Expand Down
4 changes: 3 additions & 1 deletion client/src/pages/app-creation/create-app-github.tsx
Expand Up @@ -114,7 +114,9 @@ export const CreateAppGithub = () => {
});
setIsTerminalVisible(true);
} catch (error) {
toast.error(error);
error.message === 'Not Found'
? toast.error(`Repository : ${values.gitRepoUrl} not found`)
: toast.error(error.message);
}
},
});
Expand Down

0 comments on commit afee3c3

Please sign in to comment.