fixed Form alignment for edit webhook page. (#5793)

* fixed  Form alignment for edit webhook page.

* minor fix
This commit is contained in:
yug-shah0106 2022-06-30 16:37:51 +05:30 committed by GitHub
parent 00e25ade91
commit 006b1fe1a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,6 +98,7 @@ const EditWebhookPage: FunctionComponent = () => {
return ( return (
<PageContainerV1> <PageContainerV1>
<div className="tw-self-center">
{!isLoading ? ( {!isLoading ? (
<AddWebhook <AddWebhook
allowAccess={isAdminUser || isAuthDisabled} allowAccess={isAdminUser || isAuthDisabled}
@ -113,6 +114,7 @@ const EditWebhookPage: FunctionComponent = () => {
) : ( ) : (
<Loader /> <Loader />
)} )}
</div>
</PageContainerV1> </PageContainerV1>
); );
}; };