diff --git a/src/components/common/table-container-with-header.tsx b/src/components/common/table-container-with-header.tsx
index e976f029..31034cdf 100644
--- a/src/components/common/table-container-with-header.tsx
+++ b/src/components/common/table-container-with-header.tsx
@@ -3,7 +3,6 @@ type TableContainerWithHeaderProps = {
actions?: React.ReactNode;
children: React.ReactNode;
className?: string;
- noPadding?: boolean;
};
/**
@@ -30,14 +29,14 @@ type TableContainerWithHeaderProps = {
*
*
*/
-export function TableContainerWithHeader({ title, actions, children, className = '', noPadding = false }: TableContainerWithHeaderProps) {
+export function TableContainerWithHeader({ title, actions, children, className = '' }: TableContainerWithHeaderProps) {
return (
{title}
{actions &&
{actions}
}
-
{children}
+
{children}
);
}
diff --git a/src/components/status/empty-screen.tsx b/src/components/status/empty-screen.tsx
index 2a51cbec..4b69163e 100644
--- a/src/components/status/empty-screen.tsx
+++ b/src/components/status/empty-screen.tsx
@@ -9,9 +9,7 @@ type EmptyScreenProps = {
export default function EmptyScreen({ message = 'No data', hint, className }: EmptyScreenProps) {
return (
-
+
);
diff --git a/src/features/markets/components/table/markets-table.tsx b/src/features/markets/components/table/markets-table.tsx
index e2475ad1..8bf2ff98 100644
--- a/src/features/markets/components/table/markets-table.tsx
+++ b/src/features/markets/components/table/markets-table.tsx
@@ -198,7 +198,6 @@ function MarketsTable({
{loading ? (
@@ -214,6 +213,7 @@ function MarketsTable({
) : (