Skip to content

Commit

Permalink
feat: Hide SAML configuration frontend URL in SaaS (#5102)
Browse files Browse the repository at this point in the history
  • Loading branch information
rolodato authored Feb 13, 2025
1 parent 2a13d81 commit 82cdf8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/web/components/modals/CreateSAML.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const CreateSAML: FC<CreateSAML> = ({ organisationId, samlName }) => {
/>

<InputGroup
className='mt-2 mb-4'
className={`mt-2 mb-4 ${Utils.isSaas() ? 'd-none' : ''}`}
title='Frontend URL*'
data-test='frontend-url'
tooltip='The base URL of the Flagsmith dashboard. Users will be redirected here after authenticating successfully.'
Expand Down

0 comments on commit 82cdf8e

Please sign in to comment.