diff --git a/commafeed-client/src/pages/app/ApiDocumentationPage.tsx b/commafeed-client/src/pages/app/ApiDocumentationPage.tsx index f9eccc58..f31617c7 100644 --- a/commafeed-client/src/pages/app/ApiDocumentationPage.tsx +++ b/commafeed-client/src/pages/app/ApiDocumentationPage.tsx @@ -1,8 +1,14 @@ +import { Box } from "@mantine/core" import SwaggerUI from "swagger-ui-react" import "swagger-ui-react/swagger-ui.css" function ApiDocumentationPage() { - return + return ( + // force white background because swagger is unreadable with dark theme + + + + ) } export default ApiDocumentationPage