From fe2c7c27d47fb3a75f47f182c4a5d33af93bb911 Mon Sep 17 00:00:00 2001 From: Jesse Bye Date: Thu, 25 Feb 2021 14:48:07 -0800 Subject: [PATCH] fix code style --- .../src/components/SonarQubeCard/SonarQubeCard.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/sonarqube/src/components/SonarQubeCard/SonarQubeCard.tsx b/plugins/sonarqube/src/components/SonarQubeCard/SonarQubeCard.tsx index 9cd181e6c5..a8f0cfe491 100644 --- a/plugins/sonarqube/src/components/SonarQubeCard/SonarQubeCard.tsx +++ b/plugins/sonarqube/src/components/SonarQubeCard/SonarQubeCard.tsx @@ -85,9 +85,9 @@ const defaultDuplicationRatings: DuplicationRating[] = [ ]; export const SonarQubeCard = ({ - variant = 'gridItem', - duplicationRatings = defaultDuplicationRatings, - }: { + variant = 'gridItem', + duplicationRatings = defaultDuplicationRatings, +}: { entity?: Entity; variant?: InfoCardVariants; duplicationRatings?: DuplicationRating[]; @@ -105,9 +105,9 @@ export const SonarQubeCard = ({ const deepLink = !loading && value ? { - title: 'View more', - link: value.projectUrl, - } + title: 'View more', + link: value.projectUrl, + } : undefined; const classes = useStyles();