Skip to content

Commit 109c1a0

Browse files
author
test
committed
fix(public): remove dead SSO legal fallbacks
1 parent ba588c6 commit 109c1a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/sim/ee/sso/components/sso-form.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export default function SSOForm() {
258258
By signing in, you agree to our{' '}
259259
{termsLinkConfig ? (
260260
<Link
261-
href={termsLinkConfig?.href ?? '/terms'}
261+
href={termsLinkConfig.href}
262262
target='_blank'
263263
rel='noopener noreferrer'
264264
className='auth-link underline-offset-4 transition hover:underline'
@@ -269,7 +269,7 @@ export default function SSOForm() {
269269
{termsLinkConfig && privacyLinkConfig ? ' and ' : null}
270270
{privacyLinkConfig ? (
271271
<Link
272-
href={privacyLinkConfig?.href ?? '/privacy'}
272+
href={privacyLinkConfig.href}
273273
target='_blank'
274274
rel='noopener noreferrer'
275275
className='auth-link underline-offset-4 transition hover:underline'

0 commit comments

Comments
 (0)