From bc051ec1aad5bd4cf09aef1d03f65df19d098037 Mon Sep 17 00:00:00 2001 From: Alex Ni <12097569+nialexsan@users.noreply.github.com> Date: Wed, 14 Aug 2024 16:28:06 -0400 Subject: [PATCH] remove previewnet --- components/NetworkLinks.tsx | 2 +- lib/constants.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/components/NetworkLinks.tsx b/components/NetworkLinks.tsx index e651ead..1f3b010 100644 --- a/components/NetworkLinks.tsx +++ b/components/NetworkLinks.tsx @@ -1,7 +1,7 @@ /** @jsxImportSource theme-ui */ import TabNav, {TabNavLink} from "components/TabNav" -import {TEST_NET, PREVIEW_NET} from "lib/constants" +import {TEST_NET} from "lib/constants" import {NETWORK_DISPLAY_NAME} from "lib/network" import publicConfig from "lib/publicConfig" diff --git a/lib/constants.ts b/lib/constants.ts index d14a9c3..969ff12 100644 --- a/lib/constants.ts +++ b/lib/constants.ts @@ -2,7 +2,6 @@ export type Networks = "testnet" | "previewnet" export type TokenTypes = typeof FLOW_TYPE export const TEST_NET = "testnet" -export const PREVIEW_NET = "previewnet" export const FLOW_TYPE = "FLOW" export const NETWORK_STATUS_URL = "https://status.onflow.org/" export const GENERATE_KEYS_DOCS_URL =