Skip to content

Commit

Permalink
fix: revert typo for timeZoneOffset (#17717)
Browse files Browse the repository at this point in the history
CXSPA-4152
  • Loading branch information
FollowTheFlo authored Aug 1, 2023
1 parent d2d9178 commit 886d185
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration-libs/opf/base/core/utils/opf-payment-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export function getBrowserInfo(
screenWidth: nativeWindow?.screen?.width,
userAgent: nativeWindow?.navigator?.userAgent,
originUrl: nativeWindow?.location?.origin,
timezoneOffset: new Date().getTimezoneOffset(),
timeZoneOffset: new Date().getTimezoneOffset(),
};
}
2 changes: 1 addition & 1 deletion integration-libs/opf/base/root/model/opf.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export interface PaymentBrowserInfo {
screenHeight?: number;
screenWidth?: number;
userAgent?: string;
timezoneOffset?: number;
timeZoneOffset?: number;
ipAddress?: string;
originUrl?: string;
}
Expand Down

0 comments on commit 886d185

Please sign in to comment.