From bd87df1957bd4f0b3d7504056af5c55ff7b49661 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 6 Nov 2023 13:40:08 -0600 Subject: [PATCH] Remove unused export --- src/state/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/index.ts b/src/state/index.ts index c1b0da9588..55dcae6d6f 100644 --- a/src/state/index.ts +++ b/src/state/index.ts @@ -11,7 +11,7 @@ export const LOCAL_DEV_SERVICE = export const STAGING_SERVICE = 'https://staging.bsky.dev' export const PROD_SERVICE = 'https://bsky.social' export const DEFAULT_SERVICE = PROD_SERVICE -export const ROOT_STATE_STORAGE_KEY = 'root' +const ROOT_STATE_STORAGE_KEY = 'root' const STATE_FETCH_INTERVAL = 15e3 export async function setupState(serviceUri = DEFAULT_SERVICE) {