Skip to content

Commit

Permalink
Merge branches 'sdk' and 'develop' of github.com:mission-apprentissag…
Browse files Browse the repository at this point in the history
…e/tables-correspondances into sdk
  • Loading branch information
QuentinPetel committed Oct 4, 2022
2 parents acd9b40 + 902851f commit 9a8f916
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions server/src/sdk/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ export async function getCoordinatesFromAddressData({
code_postal,
code_insee,
}: AddressData) {
isSdkReady();
try {
const { getCoordinatesFromAddressData: getCoords } = await import("../../logic/handlers/geoHandler");
return await getCoords({
Expand Down Expand Up @@ -284,7 +283,6 @@ export async function getAddressFromCoordinates({
latitude: number;
longitude: number;
}): Promise<AdressResult | null> {
isSdkReady();
try {
const { getAddressDataFromCoordinates } = await import("../../logic/handlers/geoHandler");
const result = getAddressDataFromCoordinates({ latitude, longitude });
Expand Down

0 comments on commit 9a8f916

Please sign in to comment.