Thanks for letting us know, have fixed this for the next update. If you want to fix it for your build, replace functions.php line 169 with:
if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
if (!is_account_page()) {
wp_enqueue_script('sf-viewjs');
}
} else {
wp_enqueue_script('sf-viewjs');
}
– Ed