From 0f61f2f3285371d13ec61591554d616f21c1e3f2 Mon Sep 17 00:00:00 2001
From: willow <42willow@pm.me>
Date: Thu, 27 Nov 2025 16:01:40 +1100
Subject: [PATCH] Fix typo: change "Advance Options" to "Advanced Options"
(#2537)
---
src/app/features/create-room/CreateRoom.tsx | 2 +-
src/app/features/create-space/CreateSpace.tsx | 2 +-
src/app/features/room-settings/general/General.tsx | 2 +-
src/app/features/space-settings/general/General.tsx | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/app/features/create-room/CreateRoom.tsx b/src/app/features/create-room/CreateRoom.tsx
index 6ad469c..05c5c2e 100644
--- a/src/app/features/create-room/CreateRoom.tsx
+++ b/src/app/features/create-room/CreateRoom.tsx
@@ -183,7 +183,7 @@ export function CreateRoomForm({ defaultKind, space, onCreate }: CreateRoomFormP
onClick={() => setAdvance(!advance)}
type="button"
>
- Advance Options
+ Advanced Options
diff --git a/src/app/features/create-space/CreateSpace.tsx b/src/app/features/create-space/CreateSpace.tsx
index b1f9f64..530145a 100644
--- a/src/app/features/create-space/CreateSpace.tsx
+++ b/src/app/features/create-space/CreateSpace.tsx
@@ -184,7 +184,7 @@ export function CreateSpaceForm({ defaultKind, space, onCreate }: CreateSpaceFor
onClick={() => setAdvance(!advance)}
type="button"
>
- Advance Options
+ Advanced Options
diff --git a/src/app/features/room-settings/general/General.tsx b/src/app/features/room-settings/general/General.tsx
index d9c16c9..1515730 100644
--- a/src/app/features/room-settings/general/General.tsx
+++ b/src/app/features/room-settings/general/General.tsx
@@ -59,7 +59,7 @@ export function General({ requestClose }: GeneralProps) {
- Advance Options
+ Advanced Options
diff --git a/src/app/features/space-settings/general/General.tsx b/src/app/features/space-settings/general/General.tsx
index 641bfa7..7204063 100644
--- a/src/app/features/space-settings/general/General.tsx
+++ b/src/app/features/space-settings/general/General.tsx
@@ -55,7 +55,7 @@ export function General({ requestClose }: GeneralProps) {
- Advance Options
+ Advanced Options
--
2.34.1