Skip to content

Commit

Permalink
fix: fix type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kranthicodes committed Sep 26, 2024
1 parent 6f9abd1 commit ffd3979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ffd3979

Please sign in to comment.