Skip to content

Commit

Permalink
refactor(get-app-authentication): allow undefined as value for timeDi…
Browse files Browse the repository at this point in the history
…fference parameter
  • Loading branch information
oscard0m committed Sep 24, 2024
1 parent fd67b16 commit 09e28c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/get-app-authentication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export async function getAppAuthentication({
privateKey,
timeDifference,
}: State & {
timeDifference?: number;
timeDifference?: number | undefined;
}): Promise<AppAuthentication> {
try {
const appAuthentication = timeDifference
Expand Down

0 comments on commit 09e28c3

Please sign in to comment.