From e095852935b849ce601b8c770660fd6c54fc9c07 Mon Sep 17 00:00:00 2001 From: "Dr. Vortex" Date: Fri, 3 Nov 2023 19:27:42 -0500 Subject: [PATCH] Changed parameter type of stripAccountInfo --- src/account.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/account.ts b/src/account.ts index 31e28d0..a5743eb 100644 --- a/src/account.ts +++ b/src/account.ts @@ -247,7 +247,7 @@ export function getAccountRole(type: AccountType, short?: boolean): string { * @param account the account to strip info from * @returns a new object without the stripped info */ -export function stripAccountInfo(account: FullAccount): Account { +export function stripAccountInfo(account: Account): Account { return { id: account.id, username: account.username,