From 72c3499366b0ce898500fec97624e3a38562c6af Mon Sep 17 00:00:00 2001
From: Giselle Chacon Nessi <53020124+GiselleNessi@users.noreply.github.com>
Date: Tue, 25 Feb 2025 04:31:58 +0100
Subject: [PATCH] removed discord cta (#6259)
---
.github/contributing.md | 7 +--
README.md | 3 --
.../src/@/components/blocks/app-footer.tsx | 6 ---
.../src/app/(dashboard)/support/page.tsx | 47 +------------------
.../src/components/footer/socialLinks.tsx | 7 ---
packages/thirdweb/README.md | 1 -
6 files changed, 5 insertions(+), 66 deletions(-)
diff --git a/.github/contributing.md b/.github/contributing.md
index b0ce5e1e4db..02912f82e2b 100644
--- a/.github/contributing.md
+++ b/.github/contributing.md
@@ -6,8 +6,6 @@ To get started, read the [How this repo works](#how-this-repo-works) section bel
From there, you can take a look at our [Good First Issues](https://github.com/thirdweb-dev/js/labels/good%20first%20issue) board and find an issue that interests you!
-If you have any questions about the issue, feel free to ask on our [Discord server](https://discord.gg/thirdweb) in the `#contributors` channel; where you'll be able to get help from our team and other contributors.
-
## How this repo works
@@ -85,7 +83,10 @@ If your test depends on a downstream network call, you must mock the call using
import { setupServer } from "msw/node";
import { downloadMock, uploadMock } from "../../../test/src/mocks/storage.js";
-const server = setupServer(uploadMock("HASH"), downloadMock({ name: "Test NFT" }));
+const server = setupServer(
+ uploadMock("HASH"),
+ downloadMock({ name: "Test NFT" })
+);
beforeAll(() => server.listen());
afterEach(() => server.resetHandlers());
diff --git a/README.md b/README.md
index 71caae13270..d183cf02544 100644
--- a/README.md
+++ b/README.md
@@ -11,9 +11,6 @@
-
-
-
All-in-one web3 SDK for Browser, Node and Mobile apps
diff --git a/apps/dashboard/src/@/components/blocks/app-footer.tsx b/apps/dashboard/src/@/components/blocks/app-footer.tsx index d40dedab7dd..39cf386ede9 100644 --- a/apps/dashboard/src/@/components/blocks/app-footer.tsx +++ b/apps/dashboard/src/@/components/blocks/app-footer.tsx @@ -1,7 +1,6 @@ import { Button } from "@/components/ui/button"; import { cn } from "@/lib/utils"; import { ThirdwebMiniLogo } from "app/components/ThirdwebMiniLogo"; -import { DiscordIcon } from "components/icons/brand-icons/DiscordIcon"; import { GithubIcon } from "components/icons/brand-icons/GithubIcon"; import { InstagramIcon } from "components/icons/brand-icons/InstagramIcon"; import { LinkedInIcon } from "components/icons/brand-icons/LinkedinIcon"; @@ -61,11 +60,6 @@ export function AppFooter(props: AppFooterProps) {