diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a262122f..6dacd6ea1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Bug fixes +- [#904](https://github.com/alleslabs/celatone-frontend/pull/904) Fix wasm page container text alignment - [#893](https://github.com/alleslabs/celatone-frontend/pull/893) Fix validator list percent ## v1.6.0 diff --git a/src/lib/components/WasmPageContainer.tsx b/src/lib/components/WasmPageContainer.tsx index 6163c1532..d298f434f 100644 --- a/src/lib/components/WasmPageContainer.tsx +++ b/src/lib/components/WasmPageContainer.tsx @@ -1,5 +1,5 @@ import type { BoxProps } from "@chakra-ui/react"; -import { Box } from "@chakra-ui/react"; +import { Flex } from "@chakra-ui/react"; import type { ReactNode } from "react"; type WasmPageContainerProps = { @@ -8,9 +8,10 @@ type WasmPageContainerProps = { }; const WasmPageContainer = ({ children, boxProps }: WasmPageContainerProps) => ( - ( {...boxProps} > {children} - + ); export default WasmPageContainer;