diff --git a/resources/js/oauth2/profile/edit_client/components/oauth_panel.js b/resources/js/oauth2/profile/edit_client/components/oauth_panel.js index 0b87df90..24d35131 100644 --- a/resources/js/oauth2/profile/edit_client/components/oauth_panel.js +++ b/resources/js/oauth2/profile/edit_client/components/oauth_panel.js @@ -88,9 +88,9 @@ const OauthPanel = ({ "The app description field is required." ), website: string().max(SIMPLE_INPUT_MAX_LENGTH, ''), - logo_uri: string().max(SIMPLE_INPUT_MAX_LENGTH, ''), - tos_uri: string().max(SIMPLE_INPUT_MAX_LENGTH, ''), - policy_uri: string().max(SIMPLE_INPUT_MAX_LENGTH, ''), + logo_uri: string().max(SIMPLE_INPUT_MAX_LENGTH, '').nullable(), + tos_uri: string().max(SIMPLE_INPUT_MAX_LENGTH, '').nullable(), + policy_uri: string().max(SIMPLE_INPUT_MAX_LENGTH, '').nullable(), }); }