Allowing users to opt out of specific scopes during consent flow

I have an application that requires users to go through the consent form. The consent form has a list of scopes that the user will allow the application to access. I would like for the user to be able to remove some scopes if they so choose. For example, suppose we have scope “read:reports” and “write:reports” which the application is requesting. I want the user to be able to uncheck a box for “write:reports” and continue logging in. The application would then receive a token with just the “read:reports” scope.

In other words, I want a user to be able to consent to only some of the requested scopes. Is this possible with Auth0’s consent form?