mirror of
https://github.com/bitwarden/browser
synced 2025-12-24 04:04:24 +00:00
Fix typo in xPositionOffset variable name (#17857)
This commit is contained in:
@@ -448,10 +448,10 @@ export class DesktopAutofillService implements OnDestroy {
|
||||
|
||||
function normalizePosition(position: { x: number; y: number }): { x: number; y: number } {
|
||||
// Add 100 pixels to the x-coordinate to offset the native OS dialog positioning.
|
||||
const xPostionOffset = 100;
|
||||
const xPositionOffset = 100;
|
||||
|
||||
return {
|
||||
x: Math.round(position.x + xPostionOffset),
|
||||
x: Math.round(position.x + xPositionOffset),
|
||||
y: Math.round(position.y),
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user