removed <hr> from event type apps (#4297)

* removed <hr> from event type apps, app settings need to be extracted into /packages/app-store/

* nit

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Peer Richelsen 2022-09-08 19:34:49 +02:00 committed by GitHub
parent d7ec335a34
commit bb7087640d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ const AppCard = ({
}) => {
return (
<div className="mb-4 rounded-md border border-gray-200 p-8">
<div className="flex w-full">
<div className="mb-6 flex w-full">
<img src={logo} alt={name} className="mr-3 h-auto w-[42px] rounded-sm" />
<div className="flex flex-col">
<span className="font-semibold leading-none text-black">{name}</span>
@ -36,7 +36,6 @@ const AppCard = ({
<Switch onCheckedChange={switchOnClick} checked={switchChecked} />
</div>
</div>
<hr className="my-6" />
{children}
</div>
);