Browse Source

fix: fix formatting issues in PriceFeeds/index.tsx

Co-Authored-By: Connor Prussin <connor@dourolabs.xyz>
Devin AI 8 months ago
parent
commit
f3b10c93bd
1 changed files with 23 additions and 19 deletions
  1. 23 19
      apps/insights/src/components/PriceFeeds/index.tsx

+ 23 - 19
apps/insights/src/components/PriceFeeds/index.tsx

@@ -124,25 +124,29 @@ export const PriceFeeds = async () => {
           />
         </UnstyledTabPanel>
       </UnstyledTabs>
-      <Card className={styles.trademarkDisclaimerCard} variant="tertiary" title="Trademark Disclaimer">
-          <div className={styles.trademarkDisclaimerContent}>
-            <p>
-              The Pyth Network name, logo, and all related names, logos, product
-              and service names, designs, and slogans are trademarks of the Pyth
-              Data Association or its affiliates or licensors.
-            </p>
-            <p>
-              <Button
-                variant="outline"
-                size="sm"
-                href="https://www.pyth.network/trademark-disclaimer"
-                target="_blank"
-              >
-                View Full Disclaimer
-              </Button>
-            </p>
-          </div>
-        </Card>
+      <Card
+        className={styles.trademarkDisclaimerCard}
+        variant="tertiary"
+        title="Trademark Disclaimer"
+      >
+        <div className={styles.trademarkDisclaimerContent}>
+          <p>
+            The Pyth Network name, logo, and all related names, logos, product
+            and service names, designs, and slogans are trademarks of the Pyth
+            Data Association or its affiliates or licensors.
+          </p>
+          <p>
+            <Button
+              variant="outline"
+              size="sm"
+              href="https://www.pyth.network/trademark-disclaimer"
+              target="_blank"
+            >
+              View Full Disclaimer
+            </Button>
+          </p>
+        </div>
+      </Card>
     </div>
   );
 };