Skip to content

Commit

Permalink
fix: update lock (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
CristhianF7 authored Jan 28, 2025
1 parent 358a9c2 commit 345ba10
Show file tree
Hide file tree
Showing 3 changed files with 213 additions and 142 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ export const Content = styled(Column)<{ hasInfo?: boolean; isProvisionStep: bool
`}
${media.greaterThan<{ hasInfo: boolean }>('lg')`
flex-direction: ${({ hasInfo }) => hasInfo && 'row'};
flex-direction: ${({ hasInfo }: { hasInfo: boolean }) => hasInfo && 'row'};
height: calc(100% - 285px);
${({ hasInfo }) =>
${({ hasInfo }: { hasInfo: boolean }) =>
hasInfo &&
`
align-items: flex-start;
Expand Down
2 changes: 1 addition & 1 deletion components/TextField/TextField.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { SPUN_PEARL, TRAFFIC_WHITE } from '../../constants/colors';

import styled, { css } from '@/app/lib/styled-components';

export const Container = styled.div.withConfig<{ isDisabled?: boolean }>({
export const Container = styled.div.withConfig({
shouldForwardProp: (prop) => prop !== 'isDisabled',
})<{ isDisabled?: boolean }>`
width: 100%;
Expand Down
Loading

0 comments on commit 345ba10

Please sign in to comment.