We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1716116 commit 1515e72Copy full SHA for 1515e72
components/dashboard/src/login/SSOLoginForm.tsx
@@ -35,7 +35,7 @@ export const SSOLoginForm: FC<Props> = ({ onSuccess }) => {
35
const singleOrgMode = (onboardingState?.organizationCountTotal || 0) < 2;
36
37
const [orgSlug, setOrgSlug] = useState(
38
- getOrgSlugFromPath(location.pathname) || readSSOOrgSlug() || getOrgSlugFromQuery(location.search) || "",
+ getOrgSlugFromPath(location.pathname) || getOrgSlugFromQuery(location.search) || readSSOOrgSlug() || "",
39
);
40
const [error, setError] = useState("");
41
0 commit comments