Skip to content

Commit

Permalink
fix autofixable lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
weeksling committed Oct 4, 2023
1 parent d65e128 commit 8f69032
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SidebarTop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ export const SidebarTop = ({ api }: SidebarTopProps) => {
subHeadline: localBuildProgress.errorCount
? `Encountered ${pluralize("component error", localBuildProgress.errorCount, true)}`
: localBuildProgress.changeCount
? `Found ${pluralize("change", localBuildProgress.changeCount, true)}`
: "No visual changes detected",
? `Found ${pluralize("change", localBuildProgress.changeCount, true)}`
: "No visual changes detected",
},
icon: {
name: "passed",
Expand Down

0 comments on commit 8f69032

Please sign in to comment.