From 90914ea9f01540feee55e7ac28667f02622f4214 Mon Sep 17 00:00:00 2001 From: Artemy Date: Sat, 5 Nov 2022 12:59:22 +0300 Subject: [PATCH] fix: word breaking --- src/pages/create.jsx | 2 +- src/pages/note.jsx | 2 +- src/pages/pubNote.jsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/create.jsx b/src/pages/create.jsx index 28db187..4d366a0 100644 --- a/src/pages/create.jsx +++ b/src/pages/create.jsx @@ -53,7 +53,7 @@ function CreateNote() { > {preview && ( -
+
{text}
)} diff --git a/src/pages/note.jsx b/src/pages/note.jsx index 98441ed..a8f1660 100644 --- a/src/pages/note.jsx +++ b/src/pages/note.jsx @@ -30,7 +30,7 @@ function Note() { {printDate(note.time)}
-
+
{note.text}
diff --git a/src/pages/pubNote.jsx b/src/pages/pubNote.jsx index d9b64e1..5ed67ca 100644 --- a/src/pages/pubNote.jsx +++ b/src/pages/pubNote.jsx @@ -54,7 +54,7 @@ function PubNote() { {printDate(note?.time || Date.now())} -
+
{note?.text || "Загрузка..."}