Skip to content

Commit 4fcb1c5

Browse files
committed
Link warning fixed
1 parent ac483ea commit 4fcb1c5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/pages/TestVariationDetailsPage.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ const TestVariationDetailsPage: React.FunctionComponent = () => {
5353
component={Link}
5454
disabled={!baseline.testRun}
5555
to={
56-
baseline.testRun &&
57-
buildTestRunUrl(testVariation, baseline.testRun)
56+
baseline.testRun
57+
? buildTestRunUrl(testVariation, baseline.testRun)
58+
: ""
5859
}
5960
>
6061
{baseline.createdAt}

0 commit comments

Comments
 (0)