style: Apply linter auto-fixes

Add missing semicolons and adjust line breaks per ESLint rules.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Jan-Henrik Bruhn 2025-12-22 12:03:49 +01:00
parent 469d9860de
commit 943f117191
4 changed files with 10 additions and 9 deletions

View file

@ -307,7 +307,10 @@ export function FileUpload() {
)} )}
</> </>
) : ( ) : (
<label htmlFor="file-input" className="flex items-center gap-2 cursor-pointer"> <label
htmlFor="file-input"
className="flex items-center gap-2 cursor-pointer"
>
{isLoading ? ( {isLoading ? (
<> <>
<Loader2 className="w-3.5 h-3.5 animate-spin" /> <Loader2 className="w-3.5 h-3.5 animate-spin" />

View file

@ -284,7 +284,8 @@ export function ProgressMonitor() {
// Only show chart if it's different from catalogNumber // Only show chart if it's different from catalogNumber
const secondaryMetadata = [ const secondaryMetadata = [
block.threadChart && block.threadChart &&
block.threadChart !== block.threadCatalogNumber block.threadChart !==
block.threadCatalogNumber
? block.threadChart ? block.threadChart
: null, : null,
block.threadDescription, block.threadDescription,

View file

@ -69,10 +69,7 @@ export function PatternInfoSkeleton() {
{/* Three column grid matching PatternInfo stats */} {/* Three column grid matching PatternInfo stats */}
<div className="grid grid-cols-3 gap-2 text-xs mb-2"> <div className="grid grid-cols-3 gap-2 text-xs mb-2">
{[1, 2, 3].map((i) => ( {[1, 2, 3].map((i) => (
<div <div key={i} className="bg-gray-200 dark:bg-gray-700/50 p-2 rounded">
key={i}
className="bg-gray-200 dark:bg-gray-700/50 p-2 rounded"
>
<SkeletonLoader className="h-3 w-12 mb-1" variant="text" /> <SkeletonLoader className="h-3 w-12 mb-1" variant="text" />
<SkeletonLoader className="h-4 w-16" variant="text" /> <SkeletonLoader className="h-4 w-16" variant="text" />
</div> </div>

View file

@ -1,6 +1,6 @@
import { clsx, type ClassValue } from "clsx" import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge" import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) { export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs)) return twMerge(clsx(inputs));
} }