1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-21 23:00:50 +03:00

Polish all forms and add nice page headings to most screens

This commit is contained in:
Quentin Gliech
2023-10-27 12:09:23 +02:00
parent 8984cc703b
commit a404398c2c
42 changed files with 1490 additions and 388 deletions

View File

@@ -111,8 +111,8 @@ impl IntoResponse for RouteError {
.with_details(details);
FancyError::new(ctx).into_response()
}
Self::Internal(e) => (StatusCode::INTERNAL_SERVER_ERROR, e.to_string()).into_response(),
e => (StatusCode::INTERNAL_SERVER_ERROR, e.to_string()).into_response(),
Self::Internal(e) => FancyError::from(e).into_response(),
e => FancyError::from(e).into_response(),
};
(SentryEventID::from(event_id), response).into_response()