Skip to content

Commit fda1f81

Browse files
committed
fix(web-devtools): field-type
1 parent f054afb commit fda1f81

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

web-devtools/src/app/(main)/dispute-template/FetchDisputeRequestInput.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const InputContainer = styled.div`
2222
flex-wrap: wrap;
2323
gap: 8px;
2424
`;
25-
const StyledChainInput = styled(Field as any)`
25+
const StyledChainInput = styled(Field)`
2626
width: 120px;
2727
`;
2828
const StyledHeader = styled.h2`

web-devtools/src/app/(main)/dispute-template/FetchFromIdInput.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const Container = styled.div`
1515
margin-left: 24px;
1616
`;
1717

18-
const StyledInput = styled(Field as any)``;
18+
const StyledInput = styled(Field)``;
1919
const StyledHeader = styled.h2`
2020
margin-top: 24px;
2121
`;

web-devtools/src/components/LabeledInput.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const InputContainer = styled.div<{ isField?: boolean }>`
5757
`}
5858
`;
5959

60-
const StyledField = styled(Field as any)<{ paddingLeft?: number }>`
60+
const StyledField = styled(Field)<{ paddingLeft?: number }>`
6161
width: 100%;
6262
> input {
6363
border: none;

0 commit comments

Comments
 (0)