aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--.changes/particle-background.md2
-rw-r--r--packages/ui/src/components/ui/field.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/.changes/particle-background.md b/.changes/particle-background.md
index ca8bdf5..96b9402 100644
--- a/.changes/particle-background.md
+++ b/.changes/particle-background.md
@@ -2,4 +2,4 @@
"@dropout/ui": "patch:refactor"
---
-Rewrite `ParticleBackground` to morden component design instead of global `window` api call.
+Rewrite `ParticleBackground` to modern component design instead of global `window` api call.
diff --git a/packages/ui/src/components/ui/field.tsx b/packages/ui/src/components/ui/field.tsx
index d6937c4..226e302 100644
--- a/packages/ui/src/components/ui/field.tsx
+++ b/packages/ui/src/components/ui/field.tsx
@@ -209,7 +209,7 @@ function FieldError({
{uniqueErrors.map(
(error) =>
error?.message && (
- <li key={`field-error-${error}`}>{error.message}</li>
+ <li key={`field-error-${error.message}`}>{error.message}</li>
),
)}
</ul>