Try to add the following PHP code snippet to the child theme functions.php file to fix this
add_action('wp_logout', function () {
$cookie_storage = new XTS\WC_Wishlist\Cookies_Storage();
$cookie_products = $cookie_storage->get_all();
$cookie_name_count = 'woodmart_wishlist_count';
if ( is_multisite() ) {
$cookie_name_count .= '_' . get_current_blog_id();
}
if ( empty( $cookie_products ) ) {
woodmart_set_cookie( $cookie_name_count, 0 );
} else {
woodmart_set_cookie( $cookie_name_count, count( $cookie_products ) );
}
});