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: bug bash #732

Merged
merged 1 commit into from
Jan 18, 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 @@ -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