Skip to content

Commit 9e21ca2

Browse files
committed
refactor(web): refactor
1 parent 5ca1a30 commit 9e21ca2

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

web/src/components/DisputeView/DisputeInfo/DisputeInfoList.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
import React from "react";
22
import styled from "styled-components";
3-
3+
import { responsiveSize } from "styles/responsiveSize";
44
import Field, { IField } from "components/Field";
5-
65
import CardLabel from "../CardLabels";
7-
86
import { FieldItem, IDisputeInfo } from ".";
9-
import { responsiveSize } from "styles/responsiveSize";
107

118
const Container = styled.div<{ isLabel?: boolean }>`
129
display: flex;

web/src/components/Field.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ const Field: React.FC<IField> = ({
100100
<Link
101101
className="link value"
102102
to={link}
103-
// when inside aa clickable parent, stop event bubbling, so only the click on this link will be registered
104103
onClick={(event) => {
105104
event.stopPropagation();
106105
}}

0 commit comments

Comments
 (0)