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: overview tooltip #810

Merged
merged 2 commits into from
Mar 6, 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 @@ -90,6 +90,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Bug fixes

- [#810](https://github.com/alleslabs/celatone-frontend/pull/810) Incorrect tooltip style on overview
- [#792](https://github.com/alleslabs/celatone-frontend/pull/792) Expedited with network params
- [#791](https://github.com/alleslabs/celatone-frontend/pull/791) Proposal view in json direct to the lcd information
- [#789](https://github.com/alleslabs/celatone-frontend/pull/789) Remove loading overlay on pool list page causing the page look like flicking
Expand Down
2 changes: 1 addition & 1 deletion src/config/chain/osmosis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const OSMOSIS_CHAIN_CONFIGS: ChainConfigs = {
prettyName: "Osmosis Testnet",
lcd: "https://lcd.osmotest5.osmosis.zone",
rpc: "https://osmosis-testnet-rpc.polkachu.com:443",
indexer: "https://osmo-test-5-legacy-graphql.alleslabs.dev/v1/graphql",
indexer: "https://osmo-test-5-graphql.alleslabs.dev/v1/graphql",
wallets: [...keplrWallets],
features: {
faucet: {
Expand Down
3 changes: 2 additions & 1 deletion src/lib/pages/home/components/CardInfo.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { SystemStyleObject } from "@chakra-ui/react";
import { Box, Flex, Heading, Spinner, Text, Tooltip } from "@chakra-ui/react";
import { Box, Flex, Heading, Spinner, Text } from "@chakra-ui/react";

import { CustomIcon } from "lib/components/icon";
import { Tooltip } from "lib/components/Tooltip";
import type { Option } from "lib/types";

const cardProps: SystemStyleObject = {
Expand Down
Loading