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>
pull/4304/head^2
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
1 changed files with 1 additions and 2 deletions

View File

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