diff --git a/frontend/src/pages/OnboardingFlow/Steps/CustomLogo/index.jsx b/frontend/src/pages/OnboardingFlow/Steps/CustomLogo/index.jsx index 47464dab6205a9e830b8ed9a304d521ad296fb7c..377157c4100b39abf06c3eb9d2d76dea2f917602 100644 --- a/frontend/src/pages/OnboardingFlow/Steps/CustomLogo/index.jsx +++ b/frontend/src/pages/OnboardingFlow/Steps/CustomLogo/index.jsx @@ -58,8 +58,6 @@ export default function CustomLogo({ setHeader, setForwardBtn, setBackBtn }) { const logoURL = await System.fetchLogo(); _setLogo(logoURL); - - showToast("Image uploaded successfully.", "success", { clear: true }); setIsDefaultLogo(false); }; @@ -79,8 +77,6 @@ export default function CustomLogo({ setHeader, setForwardBtn, setBackBtn }) { const logoURL = await System.fetchLogo(); _setLogo(logoURL); - - showToast("Image successfully removed.", "success", { clear: true }); }; return ( diff --git a/frontend/src/pages/OnboardingFlow/Steps/EmbeddingPreference/index.jsx b/frontend/src/pages/OnboardingFlow/Steps/EmbeddingPreference/index.jsx index 6fce2bf96da898ab681ba8eb22de30defd9dec37..fa17eebdf7f7eeb735470d1673986ef2e0ce0cc6 100644 --- a/frontend/src/pages/OnboardingFlow/Steps/EmbeddingPreference/index.jsx +++ b/frontend/src/pages/OnboardingFlow/Steps/EmbeddingPreference/index.jsx @@ -95,9 +95,6 @@ export default function EmbeddingPreference({ showToast(`Failed to save embedding settings: ${error}`, "error"); return; } - showToast("Embedder settings saved successfully.", "success", { - clear: true, - }); navigate(paths.onboarding.vectorDatabase()); }; diff --git a/frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx b/frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx index 5f278158695754288051c7d04c70eb4d938eebd9..433914ae66dd315ba4650f4a99c8ed016c20fcff 100644 --- a/frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx +++ b/frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx @@ -180,7 +180,6 @@ export default function LLMPreference({ showToast(`Failed to save LLM settings: ${error}`, "error"); return; } - showToast("LLM settings saved successfully.", "success", { clear: true }); navigate(paths.onboarding.embeddingPreference()); }; diff --git a/frontend/src/pages/OnboardingFlow/Steps/UserSetup/index.jsx b/frontend/src/pages/OnboardingFlow/Steps/UserSetup/index.jsx index 500a483a18c6cfa738db53e406d28ce17ac4c427..2e619e39570646c4fb7024db5ec7daa38ee2d2f1 100644 --- a/frontend/src/pages/OnboardingFlow/Steps/UserSetup/index.jsx +++ b/frontend/src/pages/OnboardingFlow/Steps/UserSetup/index.jsx @@ -124,8 +124,6 @@ const JustMe = ({ return; } - showToast("Password set successfully!", "success", { clear: true }); - // Auto-request token with password that was just set so they // are not redirected to login after completion. const { token } = await System.requestToken({ @@ -245,9 +243,7 @@ const MyTeam = ({ setMultiUserLoginValid, myTeamSubmitRef, navigate }) => { return; } - showToast("Multi-user login enabled.", "success", { clear: true }); navigate(paths.onboarding.dataHandling()); - // Auto-request token with credentials that was just set so they // are not redirected to login after completion. const { user, token } = await System.requestToken(data); diff --git a/frontend/src/pages/OnboardingFlow/Steps/VectorDatabaseConnection/index.jsx b/frontend/src/pages/OnboardingFlow/Steps/VectorDatabaseConnection/index.jsx index fb63cb8bcf04268949ad5bf04313e04f1fa81fc6..bca7e988792ede1611462a29561496fd4a6d311b 100644 --- a/frontend/src/pages/OnboardingFlow/Steps/VectorDatabaseConnection/index.jsx +++ b/frontend/src/pages/OnboardingFlow/Steps/VectorDatabaseConnection/index.jsx @@ -133,9 +133,6 @@ export default function VectorDatabaseConnection({ showToast(`Failed to save Vector Database settings: ${error}`, "error"); return; } - showToast("Vector Database settings saved successfully.", "success", { - clear: true, - }); navigate(paths.onboarding.customLogo()); };