PR feedback

Signed-off-by: mo <mcassidy@hchb.com>
This commit is contained in:
mo
2022-05-06 15:01:15 -05:00
parent 282f9b8c7e
commit 1ea0a9db4e
3 changed files with 5 additions and 13 deletions
@@ -64,11 +64,7 @@ export const GitTagTable = () => {
const { items, loading, error } = useGitTags(entity);
if (error) {
return (
<div>
<ResponseErrorPanel error={error} />
</div>
);
return <ResponseErrorPanel error={error} />;
}
return (
@@ -103,11 +103,7 @@ export const PullRequestTable = ({ defaultLimit }: PullRequestTableProps) => {
);
if (error) {
return (
<div>
<ResponseErrorPanel error={error} />
</div>
);
return <ResponseErrorPanel error={error} />;
}
return (