Skip to content

Commit

Permalink
Merge pull request #732 from alleslabs/fix/tab-and-recent-modules
Browse files Browse the repository at this point in the history
fix: bug bash
  • Loading branch information
songwongtp committed Jan 18, 2024
2 parents ffe9c74 + a1e8e0c commit ff4eef4
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 @@ -60,6 +60,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Bug fixes

- [#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

2 comments on commit ff4eef4

@vercel
Copy link

@vercel vercel bot commented on ff4eef4 Jan 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on ff4eef4 Jan 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.