style(ui): change default button size from sm to md and remove explicit size="sm" props

This commit is contained in:
2026-04-22 19:45:56 -04:00
parent 482578af84
commit 18f1fcdbd0
6 changed files with 11 additions and 19 deletions
-2
View File
@@ -215,7 +215,6 @@ const Table = ({
{totalPages > 1 && (
<Button
variant="ghost"
size="sm"
onClick={() => onPageChange(currentPage - 1)}
disabled={currentPage === 1}
>
@@ -240,7 +239,6 @@ const Table = ({
{totalPages > 1 && (
<Button
variant="ghost"
size="sm"
onClick={() => onPageChange(currentPage + 1)}
disabled={currentPage === totalPages}
>