Skip to content

Commit

Permalink
fix(web-devtools): field-type
Browse files Browse the repository at this point in the history
  • Loading branch information
Harman-singh-waraich committed Nov 22, 2024
1 parent f054afb commit fda1f81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const InputContainer = styled.div`
flex-wrap: wrap;
gap: 8px;
`;
const StyledChainInput = styled(Field as any)`
const StyledChainInput = styled(Field)`
width: 120px;
`;
const StyledHeader = styled.h2`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Container = styled.div`
margin-left: 24px;
`;

const StyledInput = styled(Field as any)``;
const StyledInput = styled(Field)``;
const StyledHeader = styled.h2`
margin-top: 24px;
`;
Expand Down
2 changes: 1 addition & 1 deletion web-devtools/src/components/LabeledInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const InputContainer = styled.div<{ isField?: boolean }>`
`}
`;

const StyledField = styled(Field as any)<{ paddingLeft?: number }>`
const StyledField = styled(Field)<{ paddingLeft?: number }>`
width: 100%;
> input {
border: none;
Expand Down

0 comments on commit fda1f81

Please sign in to comment.