Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix background mock #6463

Merged
merged 3 commits into from
Jul 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix address background mock
  • Loading branch information
Weiko committed Jul 30, 2024
commit f41adf2dba8598ab0a7d8d018efd3c3c6ab1780b
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,13 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
address: {
addressStreet1: 'OLINDA SAS',
addressStreet2: '18 rue de Navarin',
addressCity: 'Paris',
addressState: null,
addressPostcode: '75009',
addressCountry: 'France',
addressCity: 'Paris',
addressLat: null,
addressLng: null,
__typename: 'Address',
Comment on lines +21 to +27
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

check: Verify that the new address fields (addressCountry, addressLat, addressLng) are correctly populated and used in the application.

},
accountOwner: null,
people: {
Expand Down Expand Up @@ -125,6 +130,11 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
addressStreet2: 'Mountain View',
addressState: 'CA',
addressPostcode: '94043',
addressCountry: 'United States',
addressCity: 'Mountain View',
addressLat: null,
addressLng: null,
__typename: 'Address',
},
accountOwner: null,
people: {
Expand Down Expand Up @@ -329,6 +339,11 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
addressStreet2: 'Menlo Park',
addressState: 'CA',
addressPostcode: '94025',
addressCountry: 'United States',
addressCity: 'Menlo Park',
addressLat: null,
addressLng: null,
__typename: 'Address',
},
accountOwner: null,
people: {
Expand Down Expand Up @@ -463,6 +478,11 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
addressStreet2: 'Los Gatos',
addressState: 'CA',
addressPostcode: '95032',
addressCountry: 'France',
addressCity: 'Paris',
addressLat: null,
addressLng: null,
__typename: 'Address',
},
accountOwner: null,
people: {
Expand Down Expand Up @@ -516,6 +536,11 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
addressStreet2: 'Redmond',
addressState: 'WA',
addressPostcode: '98052',
addressCountry: 'United States',
addressCity: 'Redmond',
addressLat: null,
addressLng: null,
__typename: 'Address',
},
accountOwner: null,
people: {
Expand Down Expand Up @@ -696,8 +721,14 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
},
address: {
addressStreet1: '42 rue de paradis',
addressStreet2: '3rd floor',
addressCity: 'Paris',
addressState: 'Ile de France',
addressPostcode: '75010',
addressCountry: 'France',
addressLat: null,
addressLng: null,
__typename: 'Address',
},
accountOwner: null,
people: {
Expand Down Expand Up @@ -748,9 +779,14 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
},
address: {
addressStreet1: '888 Brannan Street',
addressStreet2: '4th Floor',
addressCity: 'San Francisco',
addressState: 'CA',
addressPostcode: '75010',
addressPostcode: '94103',
addressCountry: 'United States',
addressLat: null,
addressLng: null,
__typename: 'Address',
},
accountOwner: null,
people: {
Expand Down Expand Up @@ -805,6 +841,10 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
addressCity: 'Seattle',
addressState: 'WA',
addressPostcode: '98164',
addressCountry: 'United States',
addressLat: null,
addressLng: null,
__typename: 'Address',
},
accountOwner: null,
people: {
Expand Down Expand Up @@ -859,6 +899,10 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
addressCity: 'Palo Alto',
addressState: 'CA',
addressPostcode: '94306',
addressCountry: 'United States',
addressLat: null,
addressLng: null,
__typename: 'Address',
},
accountOwner: null,
people: {
Expand Down Expand Up @@ -941,7 +985,13 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
address: {
addressStreet1: '129, Samsung-ro',
addressStreet2: 'Yeongtong-gu, Suwon-si',
addressPostcode: '16677',
addressState: 'Gyeonggi-do',
addressCity: 'Gyeonggi-do',
addressCountry: 'South Korea',
addressLat: null,
addressLng: null,
__typename: 'Address',
},
accountOwner: null,
people: {
Expand Down Expand Up @@ -1027,6 +1077,10 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
addressCity: 'San Francisco',
addressState: 'CA',
addressPostcode: '94105',
addressCountry: 'United States',
addressLat: null,
addressLng: null,
__typename: 'Address',
},
accountOwner: null,
people: {
Expand Down Expand Up @@ -1077,7 +1131,14 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
},
address: {
addressStreet1: '575 Lexington Ave 16th Floor',
addressStreet2: '16th Floor',
addressCity: 'New York',
addressState: 'NY',
addressPostcode: '10022',
addressCountry: 'United States',
addressLat: null,
addressLng: null,
__typename: 'Address',
},
accountOwner: null,
people: {
Expand Down Expand Up @@ -1132,6 +1193,10 @@ export const SIGN_IN_BACKGROUND_MOCK_COMPANIES = [
addressCity: 'San Francisco',
addressState: 'CA',
addressPostcode: '94104',
addressCountry: 'United States',
addressLat: null,
addressLng: null,
__typename: 'Address',
},
accountOwner: null,
people: {
Expand Down