fix: gridpage error

This commit is contained in:
ascarbek 2023-03-31 20:03:44 +06:00
parent 75f7b9765d
commit 7970e7fae3

View File

@ -22,8 +22,8 @@ export const Grid = ({ viewId }: { viewId: string }) => {
}; };
return ( return (
controller && <>
groups && ( {controller && groups && (
<> <>
<div className='mx-auto mt-8 flex flex-col gap-8 px-8'> <div className='mx-auto mt-8 flex flex-col gap-8 px-8'>
<div className='flex w-full items-center justify-between'> <div className='flex w-full items-center justify-between'>
@ -52,6 +52,7 @@ export const Grid = ({ viewId }: { viewId: string }) => {
></EditRow> ></EditRow>
)} )}
</> </>
) )}
</>
); );
}; };