diff --git a/crates/openid/src/response_types.rs b/crates/openid/src/response_types.rs index e2b22c1..9d52aee 100644 --- a/crates/openid/src/response_types.rs +++ b/crates/openid/src/response_types.rs @@ -6,7 +6,7 @@ pub fn supported_response_types() -> Vec> { // Recommended: support the code flow. ResponseTypes::new(vec![CoreResponseType::Code]), // Optional: support the implicit flow. - ResponseTypes::new(vec![CoreResponseType::Token, CoreResponseType::IdToken]), // Other flows including hybrid flows may also be specified here. + // ResponseTypes::new(vec![CoreResponseType::Token, CoreResponseType::IdToken]), // Other flows including hybrid flows may also be specified here. ] }