diff --git a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/index.blade.php b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/index.blade.php index 312e0f80e..0b14d0dd2 100644 --- a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/index.blade.php +++ b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/index.blade.php @@ -19,10 +19,9 @@ let contentHeight = $('.account-layout').css('height'); sidebarHeight = parseInt(sidebarHeight.substring(0, sidebarHeight.length - 2)); - contentHeight = parseInt(contentHeight.substring(0, contentHeight.length - 2)); - var height = sidebarHeight > contentHeight ? sidebarHeight + 30 : contentHeight; + let height = sidebarHeight > contentHeight ? sidebarHeight + 30 : contentHeight; height = height + "px"; $('.account-content').css('height', height);