Skip to content

Commit

Permalink
lit:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joepegler committed Apr 8, 2024
1 parent d987770 commit 025b7f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/common/src/utils/Helpers/getAAError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ const buildErrorStrings = (error: KnownError, service?: Service): string[] =>
service ? `\nSent via: ${service}` : "",
].filter(Boolean);


type AccountAbstractionErrorParams = { docsSlug?: string; metaMessages?: string[]; details?: string }
type AccountAbstractionErrorParams = { docsSlug?: string; metaMessages?: string[]; details?: string };

class AccountAbstractionError extends BaseError {
override name = "AccountAbstractionError";

constructor(title: string, params: AccountAbstractionErrorParams = {}) {
super(title, params);
}
Expand Down

0 comments on commit 025b7f6

Please sign in to comment.