Skip to content

Commit

Permalink
fix: snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
kathaypacific committed Jan 24, 2025
1 parent c0fd3cb commit 0187172
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions src/components/__snapshots__/Avatar.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ exports[`Avatar renders correctly with address and name but no number 1`] = `
"justifyContent": "center",
},
{
"backgroundColor": "hsl(0, 53%, 93%)",
"backgroundColor": "#F8F9F9",
"borderRadius": 20,
"height": 40,
"width": 40,
Expand All @@ -51,7 +51,7 @@ exports[`Avatar renders correctly with address and name but no number 1`] = `
"lineHeight": 24,
},
{
"color": "hsl(0, 67%, 24%)",
"color": "#2E3338",
"fontSize": 20,
"lineHeight": 26.666666666666668,
},
Expand Down Expand Up @@ -140,7 +140,7 @@ exports[`Avatar renders correctly with address but no name nor number 1`] = `
"justifyContent": "center",
},
{
"backgroundColor": "hsl(0, 53%, 93%)",
"backgroundColor": "#F8F9F9",
"borderRadius": 20,
"height": 40,
"width": 40,
Expand All @@ -157,7 +157,7 @@ exports[`Avatar renders correctly with address but no name nor number 1`] = `
>
<path
d="M12 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 7c2.67 0 8 1.33 8 4v3H4v-3c0-2.67 5.33-4 8-4Zm0 1.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1Z"
fill="hsl(0, 67%, 24%)"
fill="#2E3338"
/>
</svg>
</View>
Expand Down Expand Up @@ -222,7 +222,7 @@ exports[`Avatar renders correctly with just number 1`] = `
"justifyContent": "center",
},
{
"backgroundColor": "hsl(0, 53%, 93%)",
"backgroundColor": "#F8F9F9",
"borderRadius": 20,
"height": 40,
"width": 40,
Expand All @@ -239,7 +239,7 @@ exports[`Avatar renders correctly with just number 1`] = `
>
<path
d="M12 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 7c2.67 0 8 1.33 8 4v3H4v-3c0-2.67 5.33-4 8-4Zm0 1.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1Z"
fill="hsl(0, 67%, 24%)"
fill="#2E3338"
/>
</svg>
</View>
Expand Down Expand Up @@ -339,7 +339,7 @@ exports[`Avatar renders correctly with number and name 1`] = `
"justifyContent": "center",
},
{
"backgroundColor": "hsl(0, 53%, 93%)",
"backgroundColor": "#F8F9F9",
"borderRadius": 20,
"height": 40,
"width": 40,
Expand All @@ -359,7 +359,7 @@ exports[`Avatar renders correctly with number and name 1`] = `
"lineHeight": 24,
},
{
"color": "hsl(0, 67%, 24%)",
"color": "#2E3338",
"fontSize": 20,
"lineHeight": 26.666666666666668,
},
Expand Down
4 changes: 2 additions & 2 deletions src/components/__snapshots__/ContactCircle.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ exports[`ContactCircle when given recipient with only address uses User svg 1`]
"justifyContent": "center",
},
{
"backgroundColor": "hsl(291, 53%, 93%)",
"backgroundColor": "#F8F9F9",
"borderRadius": 15,
"height": 30,
"width": 30,
Expand All @@ -38,7 +38,7 @@ exports[`ContactCircle when given recipient with only address uses User svg 1`]
>
<path
d="M12 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 7c2.67 0 8 1.33 8 4v3H4v-3c0-2.67 5.33-4 8-4Zm0 1.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1Z"
fill="hsl(291, 67%, 24%)"
fill="#2E3338"
/>
</svg>
</View>
Expand Down
4 changes: 2 additions & 2 deletions src/send/__snapshots__/SendConfirmation.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ exports[`SendConfirmation renders correctly 1`] = `
"justifyContent": "center",
},
{
"backgroundColor": "hsl(0, 53%, 93%)",
"backgroundColor": "#F8F9F9",
"borderRadius": 20,
"height": 40,
"width": 40,
Expand All @@ -203,7 +203,7 @@ exports[`SendConfirmation renders correctly 1`] = `
>
<path
d="M12 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 7c2.67 0 8 1.33 8 4v3H4v-3c0-2.67 5.33-4 8-4Zm0 1.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1Z"
fill="hsl(0, 67%, 24%)"
fill="#2E3338"
/>
</svg>
</View>
Expand Down

0 comments on commit 0187172

Please sign in to comment.