Skip to content

Commit

Permalink
feat(components): fix un-align sub-page with sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
jennieramida committed Jan 30, 2023
1 parent 2dc251e commit 718a315
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased

### Features

- [#134](https://github.com/alleslabs/celatone-frontend/pull/134) Fix un-align sub-page with sidebar
- [#120](https://github.com/alleslabs/celatone-frontend/pull/120) Add simulate migrate fee and the final migration step
- [#108](https://github.com/alleslabs/celatone-frontend/pull/108) Add migrate options on migrate page and upload new code for migration
- [#130](https://github.com/alleslabs/celatone-frontend/pull/130) Add support for Terra public projects
Expand Down
2 changes: 1 addition & 1 deletion src/lib/pages/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { QuickMenu } from "./components/QuickMenu";
import { RecentActivities } from "./components/RecentActivities";

const Home = () => (
<Box m="1">
<Box mx="1">
<QuickMenu />
<RecentActivities />
{/* <PastTransaction /> */}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const CodeSelect = ({
)}
<CodeSelectModalButton
onCodeSelect={onCodeSelect}
buttonText={codeId ? "Change" : "Select Code"}
buttonText={codeId ? "Change Code" : "Select Code"}
/>
</Flex>
{isError && (
Expand Down

0 comments on commit 718a315

Please sign in to comment.