Skip to content

Commit

Permalink
fix: make adjustments based on PR review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Oct 13, 2023
1 parent f09aec3 commit 29c5d59
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/components/drawer/components/drawer-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function DrawerHeader({
const [isHovered, bind] = useHover();

return (
<Flex justifyContent="space-between" alignItems="center" py="space.04" px="space.04" {...bind}>
<Flex justifyContent="space-between" alignItems="center" p="space.04" {...bind}>
{enableGoBack ? (
<HeaderActionButton
icon={<ArrowLeftIcon />}
Expand Down
1 change: 0 additions & 1 deletion src/app/components/text-input-field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ export function TextInputField({
ref={inputRef || ref}
_disabled={{ bg: color('bg') }}
_focus={{ border: 'none' }}
_placeholder={{ color: 'colors.accent.text-subdued' }}
autoComplete="off"
border="none"
data-testid={dataTestId}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function CreateAccountAction({ onCreateAccount }: CreateAccountActionProp
bottom={0}
width="100%"
>
<LeatherButton data-testId="create-account" fullWidth onClick={() => onCreateAccount()}>
<LeatherButton fullWidth onClick={() => onCreateAccount()}>
Create new account
</LeatherButton>
</Flex>
Expand Down

0 comments on commit 29c5d59

Please sign in to comment.