dev #3

Merged
syoul merged 3 commits from dev into main 2026-04-22 02:10:39 +02:00
Showing only changes of commit dfe832728e - Show all commits
+2 -2
View File
@@ -330,8 +330,8 @@ export function FlowMap({ arcs, focusCity, onCityClick }: FlowMapProps) {
style={{ cursor: 'default' }} style={{ cursor: 'default' }}
> >
{/* Zone de hit invisible plus large */} {/* Zone de hit invisible plus large */}
<path d={a.path} fill="none" stroke="transparent" strokeWidth={Math.max(2, a.strokeW)} /> <path d={a.path} fill="none" stroke="transparent" strokeWidth={Math.max(2, a.strokeW)} pointerEvents="stroke" />
<path d={a.path} fill="none" stroke={a.stroke} strokeWidth={a.strokeW} strokeLinecap="round" /> <path d={a.path} fill="none" stroke={a.stroke} strokeWidth={a.strokeW} strokeLinecap="round" pointerEvents="stroke" />
<polygon points={a.arrowPts} fill={a.arrowFill} /> <polygon points={a.arrowPts} fill={a.arrowFill} />
</g> </g>
))} ))}