diff --git a/surfsense_web/app/dashboard/[search_space_id]/editor/[documentId]/page.tsx b/surfsense_web/app/dashboard/[search_space_id]/editor/[documentId]/page.tsx
index 99ccefcd9..049183cf3 100644
--- a/surfsense_web/app/dashboard/[search_space_id]/editor/[documentId]/page.tsx
+++ b/surfsense_web/app/dashboard/[search_space_id]/editor/[documentId]/page.tsx
@@ -439,7 +439,7 @@ export default function EditorPage() {
<>
- {isNewNote ? "Creating..." : "Saving..."}
+ {isNewNote ? "Creating" : "Saving"}
>
) : (
diff --git a/surfsense_web/app/dashboard/[search_space_id]/team/page.tsx b/surfsense_web/app/dashboard/[search_space_id]/team/page.tsx
index 8ffb6c3bf..b8ba2d77b 100644
--- a/surfsense_web/app/dashboard/[search_space_id]/team/page.tsx
+++ b/surfsense_web/app/dashboard/[search_space_id]/team/page.tsx
@@ -1294,7 +1294,7 @@ function CreateInviteDialog({
{creating ? (
<>
- Creating...
+ Creating
>
) : (
"Create Invite"
@@ -1471,7 +1471,7 @@ function CreateRoleDialog({
{creating ? (
<>
- Creating...
+ Creating
>
) : (
"Create Role"
diff --git a/surfsense_web/components/shared/llm-config-form.tsx b/surfsense_web/components/shared/llm-config-form.tsx
index 46acb80e6..cfeff23b6 100644
--- a/surfsense_web/components/shared/llm-config-form.tsx
+++ b/surfsense_web/components/shared/llm-config-form.tsx
@@ -560,7 +560,7 @@ export function LLMConfigForm({
{isSubmitting ? (
<>
- {mode === "edit" ? "Updating..." : "Creating..."}
+ {mode === "edit" ? "Updating..." : "Creating"}
>
) : (
<>
diff --git a/surfsense_web/messages/en.json b/surfsense_web/messages/en.json
index ae7f98843..84bacbfd2 100644
--- a/surfsense_web/messages/en.json
+++ b/surfsense_web/messages/en.json
@@ -88,7 +88,7 @@
"description_label": "Description",
"description_placeholder": "What is this search space for?",
"create_button": "Create",
- "creating": "Creating...",
+ "creating": "Creating",
"all_search_spaces": "All Search Spaces",
"search_spaces_count": "{count, plural, =0 {No search spaces} =1 {1 search space} other {# search spaces}}",
"no_search_spaces": "No search spaces yet",