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