Code cleanup

This commit is contained in:
2026-02-07 02:51:01 +01:00
parent ced72ccd84
commit a281f4acaf
2 changed files with 3 additions and 2 deletions

View File

@@ -146,9 +146,9 @@ static Task WriteUnauthorizedChallengeAsync(HttpContext context)
{
Status = StatusCodes.Status401Unauthorized,
Title = "Unauthorized",
Detail = "Unauthorized"
Detail = "Unauthorized",
Extensions = { ["error"] = "Unauthorized" }
};
problem.Extensions["error"] = "Unauthorized";
return context.Response.WriteAsJsonAsync(problem);
}

View File

@@ -219,6 +219,7 @@ button .chip {
/* Slider */
input[type="range"].full-slider {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 20px;
border-radius: 999px;