diff --git a/src/components/Table/ActionCellRender.tsx b/src/components/Table/ActionCellRender.tsx
index f0c6c03..6e91913 100644
--- a/src/components/Table/ActionCellRender.tsx
+++ b/src/components/Table/ActionCellRender.tsx
@@ -4,7 +4,14 @@ export const ActionCellRender =
(action: string, onClick: (row: string[]) => void) =>
(_: string, row: string[]) => {
return (
- onClick(row)} className="cell--action">
+ {
+ e.preventDefault();
+ onClick(row);
+ }}
+ className="cell--action"
+ >
{action}