Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(components): fix document link #1089

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Bug fixes

- [#1089](https://github.com/alleslabs/celatone-frontend/pull/1089) Fix document links for code detail
- [#1075](https://github.com/alleslabs/celatone-frontend/pull/1075) Fix custom minitia minor change

## v1.7.3
Expand Down
4 changes: 2 additions & 2 deletions src/lib/pages/code-details/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const CodeDetailsBody = observer(({ codeId, tab }: CodeDetailsBodyProps) => {
<UserDocsLink
title="What is Code in CosmWasm?"
cta="Read more about Code Details"
href="cosmwasm/code/detail-page"
href="cosmwasm/codes/detail-page"
/>
</TabPanel>
<TabPanel p={0}>
Expand All @@ -149,7 +149,7 @@ const CodeDetailsBody = observer(({ codeId, tab }: CodeDetailsBodyProps) => {
<UserDocsLink
title="How to attached and use JSON Schema?"
cta="Read more about JSON Schema"
href="cosmwasm/code/attach-json-schema"
href="cosmwasm/codes/attach-json-schema"
/>
</TabPanel>
</TabPanels>
Expand Down
Loading