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
parent
d7ec335a34
commit
bb7087640d
|
@ -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>
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue