|
|
@@ -124,32 +124,6 @@ export const PriceFeeds = async () => {
|
|
|
/>
|
|
|
</UnstyledTabPanel>
|
|
|
</UnstyledTabs>
|
|
|
- <div className={styles.trademarkDisclaimer}>
|
|
|
- <h3 className={styles.trademarkDisclaimerHeader}>
|
|
|
- Trademark Disclaimer
|
|
|
- </h3>
|
|
|
- <p>
|
|
|
- This website may display ticker symbols, product names, and other
|
|
|
- identifiers that are trademarks, service marks or trade names of third
|
|
|
- parties. Such display is for informational purposes only and does not
|
|
|
- constitute any claim of ownership thereof by Pyth Data Association or
|
|
|
- any of its subsidiaries and other affiliates (collectively,
|
|
|
- "Association") or any sponsorship or endorsement by
|
|
|
- Association of any associated products or services, and should not be
|
|
|
- construed as indicating any affiliation, sponsorship or other
|
|
|
- connection between Association and the third-party owners of such
|
|
|
- identifiers. Any such third-party identifiers associated with
|
|
|
- financial data are made solely to identify the relevant financial
|
|
|
- products for which price data is made available via the website. All
|
|
|
- trademarks, service marks, logos, product names, trade names and
|
|
|
- company names mentioned on the website are the property of their
|
|
|
- respective owners and are protected by trademark and other
|
|
|
- intellectual property laws. Association makes no representations or
|
|
|
- warranties with respect to any such identifiers or any data or other
|
|
|
- information associated therewith and reserves the right to modify or
|
|
|
- remove any such displays at its discretion.
|
|
|
- </p>
|
|
|
- </div>
|
|
|
</div>
|
|
|
);
|
|
|
};
|
|
|
@@ -179,7 +153,6 @@ const FeaturedFeeds = ({
|
|
|
icon={<Star />}
|
|
|
feeds={featuredFeeds}
|
|
|
showPrices
|
|
|
- linkFeeds
|
|
|
/>
|
|
|
</YesterdaysPricesProvider>
|
|
|
<FeaturedFeedsCard
|
|
|
@@ -217,7 +190,6 @@ type FeaturedFeedsCardProps<T extends ElementType> = Omit<
|
|
|
"children"
|
|
|
> & {
|
|
|
showPrices?: boolean | undefined;
|
|
|
- linkFeeds?: boolean | undefined;
|
|
|
feeds: FeaturedFeed[];
|
|
|
};
|
|
|
|
|
|
@@ -232,7 +204,6 @@ type FeaturedFeed = {
|
|
|
|
|
|
const FeaturedFeedsCard = <T extends ElementType>({
|
|
|
showPrices,
|
|
|
- linkFeeds,
|
|
|
feeds,
|
|
|
...props
|
|
|
}: FeaturedFeedsCardProps<T>) => (
|
|
|
@@ -242,9 +213,7 @@ const FeaturedFeedsCard = <T extends ElementType>({
|
|
|
<Card
|
|
|
key={feed.product.price_account}
|
|
|
variant="tertiary"
|
|
|
- {...(linkFeeds && {
|
|
|
- href: `/price-feeds/${encodeURIComponent(feed.symbol)}`,
|
|
|
- })}
|
|
|
+ href={`/price-feeds/${encodeURIComponent(feed.symbol)}`}
|
|
|
>
|
|
|
<div className={styles.feedCardContents}>
|
|
|
<PriceFeedTag symbol={feed.symbol} />
|