diff --git a/public/.well-known/apple-app-site-association.json b/public/.well-known/apple-app-site-association.json new file mode 100644 index 000000000..c2f58f5a7 --- /dev/null +++ b/public/.well-known/apple-app-site-association.json @@ -0,0 +1,11 @@ +{ + "applinks": { + "apps": [], + "details": [ + { + "appID": "DQ48D9BF2V.org.cru.mpdx", + "paths": ["/accountLists/*/contacts/*", "/contacts/*", "/auth/mobile"] + } + ] + } +} diff --git a/public/.well-known/assetlinks.json b/public/.well-known/assetlinks.json new file mode 100644 index 000000000..a9fb51258 --- /dev/null +++ b/public/.well-known/assetlinks.json @@ -0,0 +1,12 @@ +[ + { + "relation": ["delegate_permission/common.handle_all_urls"], + "target": { + "namespace": "android_app", + "package_name": "org.mpdx", + "sha256_cert_fingerprints": [ + "1C:10:CC:D9:97:17:F4:D9:B7:16:37:7C:6C:48:ED:0E:CB:29:C1:F9:6B:8A:FF:B1:E5:23:E3:B9:15:2A:C1:8B" + ] + } + } +] diff --git a/src/components/Task/Modal/Form/Inputs/SuggestedContactStatus/SuggestedContactStatus.test.tsx b/src/components/Task/Modal/Form/Inputs/SuggestedContactStatus/SuggestedContactStatus.test.tsx index 31e1fd2f2..4d22d2495 100644 --- a/src/components/Task/Modal/Form/Inputs/SuggestedContactStatus/SuggestedContactStatus.test.tsx +++ b/src/components/Task/Modal/Form/Inputs/SuggestedContactStatus/SuggestedContactStatus.test.tsx @@ -105,7 +105,7 @@ describe('SuggestedContactStatus', () => { }); it('renders suggested status when single contact and checks contact status with gql call', async () => { - const { getByText } = render( + const { findByText } = render( { }, }); }); - await waitFor(() => { - expect(getByText("Change the contact's status to:")).toBeInTheDocument(); - }); - expect(getByText('Initiate for Appointment')).toBeInTheDocument(); + expect(await findByText('Initiate for Appointment')).toBeInTheDocument(); }); it('does not send a ContactStatus graphql request when the current contacts status is provided', async () => {