Skip to content

Commit c4086de

Browse files
committed
fix(plates): update EUBand component to conditionally show 'Din Geprüft' for Germany
1 parent e2ebfa6 commit c4086de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/LicensePlate.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ const LicensePlate = forwardRef<HTMLDivElement, LicensePlateProps>(
526526
padding: (country === 'A' || country === 'HR') ? `0 ${3 * scale}px` : '0',
527527
zIndex: 2,
528528
}}>
529-
<EUBand scale={scale} countryCode={country} height={(country === 'A' || country === 'HR') ? '100%' : undefined} noBorderRadius={(country === 'A' || country === 'HR')} showDinGepruft={isGermany} borderRadius={5} />
529+
<EUBand scale={scale} countryCode={country} height={(country === 'A' || country === 'HR') ? '100%' : undefined} noBorderRadius={(country === 'A' || country === 'HR')} showDinGepruft={country === 'D'} borderRadius={5} />
530530
</div>
531531
)}
532532

0 commit comments

Comments
 (0)