fix: remove edges glitch (#3689)

fix: Update transition property in App.css

The transition property in App.css has been updated to only transition the color property instead of all properties. This change improves performance by reducing unnecessary transitions.
This commit is contained in:
anovazzi1 2024-09-04 18:05:36 -03:00 committed by GitHub
commit addadeb5cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -156,7 +156,7 @@ body {
.react-flow__edge .react-flow__edge-path {
stroke: var(--connection) !important;
transition: all;
transition: color;
transition-duration: 150ms;
}