change bearer token placeholder from https://... to just ... (#4)

This commit is contained in:
Ulysse Carion 2024-10-07 15:29:59 -07:00 committed by GitHub
parent 2c14bfebc9
commit 8b9e028f09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -63,7 +63,6 @@ export function SCIMSettingsForm({ app }: { app: App }) {
<FormControl>
<Input placeholder="https://..." {...field} />
</FormControl>
{/*<FormDescription>sp acs url</FormDescription>*/}
<FormMessage />
</FormItem>
)}
@ -75,9 +74,8 @@ export function SCIMSettingsForm({ app }: { app: App }) {
<FormItem>
<FormLabel>SCIM Bearer Token</FormLabel>
<FormControl>
<Input placeholder="https://..." {...field} />
<Input placeholder="..." {...field} />
</FormControl>
{/*<FormDescription>sp acs url</FormDescription>*/}
<FormMessage />
</FormItem>
)}