Fixed typo in variable name for GeolocationService (#16574)

This commit is contained in:
Adam Hunter 2023-04-07 07:23:15 -04:00 committed by GitHub
parent c48ca09ff2
commit ef264e2263
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ const logging = require('@tryghost/logging');
const PaymentsService = require('@tryghost/members-payments');
const TokenService = require('./services/token');
const GeolocationSerice = require('./services/geolocation');
const GeolocationService = require('./services/geolocation');
const MemberBREADService = require('./services/member-bread');
const MemberRepository = require('./repositories/member');
const EventRepository = require('./repositories/event');
@ -142,7 +142,7 @@ module.exports = function MembersAPI({
emailSuppressionList
});
const geolocationService = new GeolocationSerice();
const geolocationService = new GeolocationService();
const magicLinkService = new MagicLink({
transporter,