Skip to content

Commit

Permalink
Remove static color style prop to FilledTextInput's placeholder text
Browse files Browse the repository at this point in the history
Color is an animated style property for the placeholder text.
  • Loading branch information
samholmes committed Jan 10, 2024
1 parent 7c1eab0 commit 622485a
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,6 @@ exports[`CategoryModal should render with a subcategory 1`] = `
style={
[
{
"color": "#FFFFFF",
"fontFamily": "Quicksand-Regular",
"fontSize": 22,
"includeFontPadding": false,
Expand Down Expand Up @@ -1606,7 +1605,6 @@ exports[`CategoryModal should render with an empty subcategory 1`] = `
style={
[
{
"color": "#FFFFFF",
"fontFamily": "Quicksand-Regular",
"fontSize": 22,
"includeFontPadding": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,6 @@ exports[`CreateWalletAccountSelect renders 1`] = `
style={
[
{
"color": "#FFFFFF",
"fontFamily": "Quicksand-Regular",
"fontSize": 22,
"includeFontPadding": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,6 @@ exports[`CreateWalletImportScene should render with loading props 1`] = `
style={
[
{
"color": "#FFFFFF",
"fontFamily": "Quicksand-Regular",
"fontSize": 22,
"includeFontPadding": false,
Expand Down
1 change: 0 additions & 1 deletion src/components/themed/FilledTextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,6 @@ const PlaceholderText = styled(Animated.Text)<{

return [
{
color: theme.primaryText,
fontFamily: theme.fontFaceDefault,
fontSize: theme.rem(1),
includeFontPadding: false
Expand Down

0 comments on commit 622485a

Please sign in to comment.