Skip to content

Commit

Permalink
fixup! Fix text size rendering expectation results
Browse files Browse the repository at this point in the history
  • Loading branch information
dottorblaster committed May 10, 2023
1 parent df1344b commit b52cfb5
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ function ExpectedValues({ expectedValues = [], isError = false }) {
<div className="w-full my-4 mr-4 bg-white shadow rounded-lg px-8 py-4">
<div className="text-lg font-bold">Values</div>
{isError ? (
<div className="mt-3 text-red-500 text-sm">Expected Values unavailable</div>
<div className="mt-3 text-red-500 text-sm">
Expected Values unavailable
</div>
) : (
<ListView
className="mt-3 text-sm"
titleClassName="text-sm"
titleClassName="text-sm"
orientation="horizontal"
data={expectedValues.map(({ name, value }) => ({
title: name,
Expand Down

0 comments on commit b52cfb5

Please sign in to comment.