Skip to content

Commit

Permalink
Merge branch 'develop' into fix/contract-lists
Browse files Browse the repository at this point in the history
  • Loading branch information
songwongtp committed Jan 18, 2024
2 parents 6eb6ff9 + ff4eef4 commit 3b71597
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Bug fixes

- [#733](https://github.com/alleslabs/celatone-frontend/pull/733) Fix contract list nullable fields
- [#732](https://github.com/alleslabs/celatone-frontend/pull/732) Fix custom tab incorrect variant and recent modules text
- [#722](https://github.com/alleslabs/celatone-frontend/pull/722) Fix flicker query page

## v1.4.1
Expand Down
2 changes: 2 additions & 0 deletions src/lib/components/CustomTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ interface CustomTabProps extends TabProps {
export const CustomTab = ({
count,
isLoading,
isDisabled,
...restProps
}: CustomTabProps) => {
const tabProps = useTab({ ...restProps });
Expand All @@ -43,6 +44,7 @@ export const CustomTab = ({
color: "gray.500",
},
}}
isDisabled={isDisabled}
_active={{
bg: "unset",
}}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/pages/modules/components/RecentModulesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const RecentModulesTable = () => {
isLoading={isLoading}
emptyState={
error ? (
<ErrorFetching dataName="recent modules" />
<ErrorFetching dataName="modules" />
) : (
<EmptyState
withBorder
Expand Down
2 changes: 1 addition & 1 deletion src/lib/pages/modules/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const RecentModules = () => {
return (
<PageContainer>
<Heading variant="h5" as="h5" minH="36px">
Recent Modules
Modules
</Heading>
<Text variant="body2" color="text.dark" mb={8}>
These modules are the most recently published on this network
Expand Down

0 comments on commit 3b71597

Please sign in to comment.