[Fix] Note shape border radius (#2696)

This PR fixes a border radius on the note shape.

Before
<img width="382" alt="image"
src="https://github.com/tldraw/tldraw/assets/23072548/5cb95dbd-c935-4f1f-901c-eca294836c96">

After
<img width="436" alt="image"
src="https://github.com/tldraw/tldraw/assets/23072548/0cce7ccf-2f7b-40dd-a27c-08c251cb4715">


### Change Type

- [x] `patch` — Bug fix

### Release Notes

- Fixes a bad border radius
pull/2691/head^2
Steve Ruiz 2024-01-31 14:04:24 +00:00 zatwierdzone przez GitHub
rodzic cbc0649047
commit d31fecd3d5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -103,7 +103,7 @@ export class NoteShapeUtil extends ShapeUtil<TLNoteShape> {
indicator(shape: TLNoteShape) {
return (
<rect
rx="7"
rx="6"
width={toDomPrecision(NOTE_SIZE)}
height={toDomPrecision(this.getHeight(shape))}
/>