From b88b410c1c99631c5d35b32e52178e9f2bfa0300 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 18 Nov 2021 20:55:01 +1100 Subject: [PATCH] Do not set a default client country --- app/Factory/ClientFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Factory/ClientFactory.php b/app/Factory/ClientFactory.php index b2fb06686d18..506e5b3ac43f 100644 --- a/app/Factory/ClientFactory.php +++ b/app/Factory/ClientFactory.php @@ -28,7 +28,7 @@ class ClientFactory $client->public_notes = ''; $client->balance = 0; $client->paid_to_date = 0; - $client->country_id = 4; + // $client->country_id = 4; $client->is_deleted = 0; $client->client_hash = Str::random(40); $client->settings = ClientSettings::defaults();