Fixed profile type

This commit is contained in:
irtiza-h30
2021-08-18 14:10:15 -04:00
parent bc4a9c6152
commit 1f9983ba65
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ const AddProfile = () => {
const { data: passpointProfiles, fetchMore: fetchMorePasspointProfiles } = useQuery(
GET_ALL_PROFILES(),
{
variables: { customerId, type: 'rf' },
variables: { customerId, type: 'passpoint' },
fetchPolicy: 'network-only',
}
);

View File

@@ -144,7 +144,7 @@ const ProfileDetails = () => {
const { data: passpointProfiles, fetchMore: fetchMorePasspointProfiles } = useQuery(
GET_ALL_PROFILES(),
{
variables: { customerId, type: 'rf' },
variables: { customerId, type: 'passpoint' },
fetchPolicy: 'network-only',
}
);