From ffd3979d4669d1e410d2d3f5011121cbed8c3351 Mon Sep 17 00:00:00 2001 From: Sai Kranthi Date: Thu, 26 Sep 2024 14:58:14 +0530 Subject: [PATCH] fix: fix type issue --- src/lib/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/common.ts b/src/lib/common.ts index 4d5056b..9cf9b23 100644 --- a/src/lib/common.ts +++ b/src/lib/common.ts @@ -27,7 +27,7 @@ export const getWallet = () => { throw new Error('Arweave wallet key not found or invalid'); }; -export const getTitle = () => process.env as string; +export const getTitle = () => process.env as unknown as string; export const getDescription = () => process.env.REPO_DESCRIPTION || DESCRIPTION_PLACEHOLDER;