Skip to content

Commit

Permalink
fix: close position modal
Browse files Browse the repository at this point in the history
  • Loading branch information
deep-path committed Dec 2, 2024
1 parent 2a27aca commit 2f5c82d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions screens/Trading/components/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ const TradingTable = ({
<ChangeCollateralMobile
open={isChangeCollateralMobileOpen}
onClose={(e) => {
e.preventDefault();
e.stopPropagation();
// e.preventDefault();
// e.stopPropagation();
setIsChangeCollateralMobileOpen(false);
}}
rowData={selectedRowData}
Expand All @@ -166,8 +166,8 @@ const TradingTable = ({
<ClosePositionMobile
open={isClosePositionModalOpen}
onClose={(e) => {
e.preventDefault();
e.stopPropagation();
// e.preventDefault();
// e.stopPropagation();
setIsClosePositionMobileOpen(false);
}}
extraProps={closePositionModalProps}
Expand Down

0 comments on commit 2f5c82d

Please sign in to comment.