We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba588c6 commit 109c1a0Copy full SHA for 109c1a0
1 file changed
apps/sim/ee/sso/components/sso-form.tsx
@@ -258,7 +258,7 @@ export default function SSOForm() {
258
By signing in, you agree to our{' '}
259
{termsLinkConfig ? (
260
<Link
261
- href={termsLinkConfig?.href ?? '/terms'}
+ href={termsLinkConfig.href}
262
target='_blank'
263
rel='noopener noreferrer'
264
className='auth-link underline-offset-4 transition hover:underline'
@@ -269,7 +269,7 @@ export default function SSOForm() {
269
{termsLinkConfig && privacyLinkConfig ? ' and ' : null}
270
{privacyLinkConfig ? (
271
272
- href={privacyLinkConfig?.href ?? '/privacy'}
+ href={privacyLinkConfig.href}
273
274
275
0 commit comments